public enum WorldState extends Enum<WorldState>
| Enum Constant and Description |
|---|
ANY |
FILE_SELECT |
LOADING |
READY |
| Modifier and Type | Method and Description |
|---|---|
static WorldState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorldState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorldState ANY
public static final WorldState FILE_SELECT
public static final WorldState LOADING
public static final WorldState READY
public static WorldState[] values()
for (WorldState c : WorldState.values()) System.out.println(c);
public static WorldState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.