public static enum AtomixValue.Action extends Enum<AtomixValue.Action>
Enum Constant and Description |
---|
COMPARE_AND_SET |
GET |
GET_AND_SET |
SET |
Modifier and Type | Method and Description |
---|---|
static AtomixValue.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AtomixValue.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AtomixValue.Action SET
public static final AtomixValue.Action GET
public static final AtomixValue.Action GET_AND_SET
public static final AtomixValue.Action COMPARE_AND_SET
public static AtomixValue.Action[] values()
for (AtomixValue.Action c : AtomixValue.Action.values()) System.out.println(c);
public static AtomixValue.Action valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullApache Camel