Package jadex.bdiv3.runtime
Enum IGoal.GoalLifecycleState
- java.lang.Object
-
- java.lang.Enum<IGoal.GoalLifecycleState>
-
- jadex.bdiv3.runtime.IGoal.GoalLifecycleState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IGoal.GoalLifecycleState>
- Enclosing interface:
- IGoal
public static enum IGoal.GoalLifecycleState extends java.lang.Enum<IGoal.GoalLifecycleState>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IGoal.GoalLifecycleState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IGoal.GoalLifecycleState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEW
public static final IGoal.GoalLifecycleState NEW
-
ADOPTED
public static final IGoal.GoalLifecycleState ADOPTED
-
OPTION
public static final IGoal.GoalLifecycleState OPTION
-
ACTIVE
public static final IGoal.GoalLifecycleState ACTIVE
-
SUSPENDED
public static final IGoal.GoalLifecycleState SUSPENDED
-
DROPPING
public static final IGoal.GoalLifecycleState DROPPING
-
DROPPED
public static final IGoal.GoalLifecycleState DROPPED
-
-
Method Detail
-
values
public static IGoal.GoalLifecycleState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IGoal.GoalLifecycleState c : IGoal.GoalLifecycleState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IGoal.GoalLifecycleState valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-