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