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