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