public static enum Objective.Operation extends Enum<Objective.Operation>
Enum Constant and Description |
---|
ADD
Adds the objective.
|
ADD_TO_EXISTING
Add to an existing Next Objective.
|
MODIFY
Modify an existing Next Objective.
|
REMOVE
Removes the objective.
|
REMOVE_FROM_EXISTING
Remove from an existing Next Objective.
|
VERIFY
Verifies that an existing Next Objective's collection of treatments
are correctly represented by the underlying implementation of the objective.
|
Modifier and Type | Method and Description |
---|---|
static Objective.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Objective.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Objective.Operation ADD
public static final Objective.Operation REMOVE
public static final Objective.Operation ADD_TO_EXISTING
public static final Objective.Operation REMOVE_FROM_EXISTING
public static final Objective.Operation MODIFY
public static final Objective.Operation VERIFY
public static Objective.Operation[] values()
for (Objective.Operation c : Objective.Operation.values()) System.out.println(c);
public static Objective.Operation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null