public enum ImportAction extends java.lang.Enum<ImportAction>
Enum Constant and Description |
---|
CREATE |
CREATE_AND_UPDATE |
NONE |
OPTIMISTIC_CREATE |
OPTIMISTIC_CREATE_AND_UPDATE |
UPDATE |
Modifier and Type | Method and Description |
---|---|
static ImportAction |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static ImportAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImportAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportAction NONE
public static final ImportAction CREATE_AND_UPDATE
public static final ImportAction CREATE
public static final ImportAction UPDATE
public static final ImportAction OPTIMISTIC_CREATE_AND_UPDATE
public static final ImportAction OPTIMISTIC_CREATE
public static ImportAction[] values()
for (ImportAction c : ImportAction.values()) System.out.println(c);
public static ImportAction 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 value()
public static ImportAction fromValue(java.lang.String v)