public enum EnumEvolutionStone extends java.lang.Enum<EnumEvolutionStone>
Enum Constant and Description |
---|
Dawnstone |
Duskstone |
Firestone |
Icestone |
Leafstone |
Moonstone |
Shinystone |
Sunstone |
Thunderstone |
Waterstone |
Modifier and Type | Method and Description |
---|---|
static EnumEvolutionStone |
getEvolutionStone(java.lang.String name)
Gets an evolution stone by its name.
|
static boolean |
hasEvolutionStone(java.lang.String name)
Checks if there is an evolution stone with a certain name.
|
static EnumEvolutionStone |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumEvolutionStone[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumEvolutionStone Firestone
public static final EnumEvolutionStone Thunderstone
public static final EnumEvolutionStone Waterstone
public static final EnumEvolutionStone Sunstone
public static final EnumEvolutionStone Leafstone
public static final EnumEvolutionStone Dawnstone
public static final EnumEvolutionStone Duskstone
public static final EnumEvolutionStone Moonstone
public static final EnumEvolutionStone Shinystone
public static final EnumEvolutionStone Icestone
public static EnumEvolutionStone[] values()
for (EnumEvolutionStone c : EnumEvolutionStone.values()) System.out.println(c);
public static EnumEvolutionStone 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 EnumEvolutionStone getEvolutionStone(java.lang.String name)
name
- The name of the evolution stone to get.public static boolean hasEvolutionStone(java.lang.String name)
name
- The name to check for an evolution stone.