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