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