public static enum AtomixMap.Action extends Enum<AtomixMap.Action>
Enum Constant and Description |
---|
CLEAR |
CONTAINS_KEY |
CONTAINS_VALUE |
ENTRY_SET |
GET |
IS_EMPTY |
PUT |
PUT_IF_ABSENT |
REMOVE |
REPLACE |
SIZE |
VALUES |
Modifier and Type | Method and Description |
---|---|
static AtomixMap.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AtomixMap.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AtomixMap.Action PUT
public static final AtomixMap.Action PUT_IF_ABSENT
public static final AtomixMap.Action GET
public static final AtomixMap.Action CLEAR
public static final AtomixMap.Action SIZE
public static final AtomixMap.Action CONTAINS_KEY
public static final AtomixMap.Action CONTAINS_VALUE
public static final AtomixMap.Action IS_EMPTY
public static final AtomixMap.Action ENTRY_SET
public static final AtomixMap.Action REMOVE
public static final AtomixMap.Action REPLACE
public static final AtomixMap.Action VALUES
public static AtomixMap.Action[] values()
for (AtomixMap.Action c : AtomixMap.Action.values()) System.out.println(c);
public static AtomixMap.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