Enum Constant and Description |
---|
EXIT |
FIGHTING |
INIT |
MENU |
OPTION |
POZE |
SELECT |
TITLE |
TRAINING |
TYPE |
Modifier and Type | Method and Description |
---|---|
static Scene |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Scene[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scene INIT
public static final Scene TITLE
public static final Scene MENU
public static final Scene OPTION
public static final Scene SELECT
public static final Scene TRAINING
public static final Scene FIGHTING
public static final Scene POZE
public static final Scene EXIT
public static final Scene TYPE
public static Scene[] values()
for (Scene c : Scene.values()) System.out.println(c);
public static Scene 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