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