public enum BattleStartTypes extends java.lang.Enum<BattleStartTypes>
Enum Constant and Description |
---|
CAVEROCK |
CURRY |
DIVE |
FORAGE |
HEADBUTT |
PUGRASSDOUBLE |
PUGRASSSINGLE |
ROCKSMASH |
SEAWEED |
SWEETSCENT |
Modifier and Type | Method and Description |
---|---|
static java.lang.String[] |
getTypeNames() |
static BattleStartTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BattleStartTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BattleStartTypes PUGRASSSINGLE
public static final BattleStartTypes PUGRASSDOUBLE
public static final BattleStartTypes SEAWEED
public static final BattleStartTypes ROCKSMASH
public static final BattleStartTypes DIVE
public static final BattleStartTypes HEADBUTT
public static final BattleStartTypes SWEETSCENT
public static final BattleStartTypes CURRY
public static final BattleStartTypes CAVEROCK
public static final BattleStartTypes FORAGE
public static BattleStartTypes[] values()
for (BattleStartTypes c : BattleStartTypes.values()) System.out.println(c);
public static BattleStartTypes 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 nullpublic static java.lang.String[] getTypeNames()