| Enum Constant and Description |
|---|
NEXT
Queue value.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumQueue |
fromString(java.lang.String text)
Returns a
EnumQueue from the given text. |
java.lang.String |
toString()
Returns the text code for the current queue value.
|
static EnumQueue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumQueue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumQueue NEXT
public static EnumQueue[] values()
for (EnumQueue c : EnumQueue.values()) System.out.println(c);
public static EnumQueue 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 static EnumQueue fromString(java.lang.String text)
EnumQueue from the given text. null if the given text doesn't describes any of
the elements.text - Text to retrieve the EnumTypenull if the given text doesn't describes any of the elements.public java.lang.String toString()
toString in class java.lang.Enum<EnumQueue>