public enum ImportPolicy extends java.lang.Enum<ImportPolicy>
| Enum Constant and Description |
|---|
DELETE_EXISTING |
FAIL_ON_DUPLICATES |
IGNORE_DUPLICATES |
REPLACE_DUPLICATES |
UPDATE_DEFAULTS |
| Modifier and Type | Method and Description |
|---|---|
static ImportPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImportPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportPolicy DELETE_EXISTING
public static final ImportPolicy REPLACE_DUPLICATES
public static final ImportPolicy FAIL_ON_DUPLICATES
public static final ImportPolicy IGNORE_DUPLICATES
public static final ImportPolicy UPDATE_DEFAULTS
public static ImportPolicy[] values()
for (ImportPolicy c : ImportPolicy.values()) System.out.println(c);
public static ImportPolicy 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 null