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