public enum BattleMode extends java.lang.Enum<BattleMode>
Modifier and Type | Method and Description |
---|---|
static BattleMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BattleMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BattleMode WAITING
public static final BattleMode MAIN_MENU
public static final BattleMode CHOOSE_POKEMON
public static final BattleMode CHOOSE_BAG
public static final BattleMode USE_BAG
public static final BattleMode CHOOSE_ATTACK
public static final BattleMode APPLY_TO_POKEMON
public static final BattleMode YES_NO_REPLACE_MOVE
public static final BattleMode YES_NO_FORFEIT
public static final BattleMode ENFORCED_SWITCH
public static final BattleMode LEVEL_UP
public static final BattleMode REPLACE_ATTACK
public static final BattleMode REPLACE_ATTACK_EXTERNAL
public static final BattleMode CHOOSE_TARGETS
public static final BattleMode CHOOSE_RELEARN_MOVE
public static final BattleMode CHOOSE_TUTOR
public static final BattleMode CHOOSE_ETHER
public static final BattleMode MEGA_EVOLUTION
public static final BattleMode ENFORCED_REVIVE
public static BattleMode[] values()
for (BattleMode c : BattleMode.values()) System.out.println(c);
public static BattleMode 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