public enum BattleMusicType extends java.lang.Enum<BattleMusicType>
Enum Constant and Description |
---|
BOSS |
CUSTOM |
GYM |
LEGENDARY |
PLAYER |
RAID |
TRAINER |
WILD |
Modifier and Type | Method and Description |
---|---|
static BattleMusicType |
getFromIndex(int index) |
static BattleMusicType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BattleMusicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BattleMusicType WILD
public static final BattleMusicType PLAYER
public static final BattleMusicType TRAINER
public static final BattleMusicType GYM
public static final BattleMusicType BOSS
public static final BattleMusicType LEGENDARY
public static final BattleMusicType RAID
public static final BattleMusicType CUSTOM
public static BattleMusicType[] values()
for (BattleMusicType c : BattleMusicType.values()) System.out.println(c);
public static BattleMusicType 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 BattleMusicType getFromIndex(int index)