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