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