|
SMILA 1.0 API documentation | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DeltaImportStrategy>
org.eclipse.smila.importing.DeltaImportStrategy
public enum DeltaImportStrategy
Parameter name and possible values to specify usage of DeltaService during update.
Enum Constant Summary | |
---|---|
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. |
Field Summary | |
---|---|
static java.lang.String |
TASK_PARAM
name of task parameter. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DeltaImportStrategy DISABLED
public static final DeltaImportStrategy INITIAL
public static final DeltaImportStrategy ADDITIVE
public static final DeltaImportStrategy FULL
Field Detail |
---|
public static final java.lang.String TASK_PARAM
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String getExternalName()
public boolean isDeltaCheckDisabled()
public boolean isDeltaDeleteEnabled()
public boolean isSetStateEnabled()
|
SMILA 1.0 API documentation | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |