public enum DeltaImportStrategy extends java.lang.Enum<DeltaImportStrategy>
Enum Constant and Description |
---|
ADDITIVE
add-and-update: set state for imported records, check for unchanged objects, don't delete removed records.
|
DISABLED
don't use delta service, just import.
|
FULL
use all features: set state for imported records, check for unchanged objects, delete removed records.
|
INITIAL
initial import: set state for imported records, don't check or delete.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
TASK_PARAM
name of task parameter.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getExternalName()
get external form of value.
|
boolean |
isDeltaCheckDisabled()
return true if checking the delta state is disabled in this mode.
|
boolean |
isDeltaDeleteEnabled()
return true if deleting unvisited records is enabled in this mode.
|
boolean |
isSetStateEnabled()
return true if setting the delta state is enable in this mode.
|
static DeltaImportStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeltaImportStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeltaImportStrategy DISABLED
public static final DeltaImportStrategy INITIAL
public static final DeltaImportStrategy ADDITIVE
public static final DeltaImportStrategy FULL
public static final java.lang.String TASK_PARAM
public static DeltaImportStrategy[] values()
for (DeltaImportStrategy c : DeltaImportStrategy.values()) System.out.println(c);
public static DeltaImportStrategy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getExternalName()
public boolean isDeltaCheckDisabled()
public boolean isDeltaDeleteEnabled()
public boolean isSetStateEnabled()