|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GameStateFlag>
org.starhope.appius.game.GameStateFlag
public enum GameStateFlag
The state of a GameEvent is one of countdown (between rounds), running (currently in team or mass play), and solo (practice or attract mode)
Enum Constant Summary | |
---|---|
GAME_COUNTDOWN
WRITEME: document this field (brpocock@star-hope.org, Nov 5, 2009) GAME_COUNTDOWN (GameStateFlag) |
|
GAME_RUNNING
WRITEME: document this field (brpocock@star-hope.org, Nov 5, 2009) GAME_RUNNING (GameStateFlag) |
|
GAME_SOLO
WRITEME: document this field (brpocock@star-hope.org, Nov 5, 2009) GAME_SOLO (GameStateFlag) |
Method Summary | |
---|---|
static GameStateFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static GameStateFlag[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GameStateFlag GAME_COUNTDOWN
public static final GameStateFlag GAME_RUNNING
public static final GameStateFlag GAME_SOLO
Method Detail |
---|
public static GameStateFlag[] values()
for (GameStateFlag c : GameStateFlag.values()) System.out.println(c);
public static GameStateFlag valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |