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