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