Package io.jmix.dataimport.configuration
Enum Class DuplicateEntityPolicy
- All Implemented Interfaces:
- Serializable,- Comparable<DuplicateEntityPolicy>,- Constable
Available policies to process a found duplicate:
 
- Update: an extracted entity not imported, existing one is updated. Properties of an existing entity are populated by values from input data as for extracted entity.
- Skip: an extracted entity not imported, existing one is not changed
- Abort: the import process is aborted immediately. Note: depending on the ImportTransactionStrategy the result of the import process differs: no one entity imported (single transaction) or entities, before the entity for which the duplicate found, are imported (transaction per entity)
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionstatic DuplicateEntityPolicyReturns the enum constant of this class with the specified name.static DuplicateEntityPolicy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
SKIP
- 
UPDATE
- 
ABORT
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-