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