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