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