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