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