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