Enum Objective.Operation
- java.lang.Object
- 
- java.lang.Enum<Objective.Operation>
- 
- org.onosproject.net.flowobjective.Objective.Operation
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Objective.Operation>
 - Enclosing interface:
- Objective
 
 public static enum Objective.Operation extends Enum<Objective.Operation> Type of operation.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ADDAdds the objective.ADD_TO_EXISTINGAdd to an existing Next Objective.MODIFYModify an existing Next Objective.REMOVERemoves the objective.REMOVE_FROM_EXISTINGRemove from an existing Next Objective.VERIFYVerifies that an existing Next Objective's collection of treatments are correctly represented by the underlying implementation of the objective.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Objective.OperationvalueOf(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.
 
- 
- 
- 
Enum Constant Detail- 
ADDpublic static final Objective.Operation ADD Adds the objective. Can be used for any flow objective. For forwarding and filtering objectives, existing objectives with identical selector and priority fields (but different treatments or next) will be replaced. For next objectives, if modification is desired, ADD will not do anything - use ADD_TO_EXISTING.
 - 
REMOVEpublic static final Objective.Operation REMOVE Removes the objective. Can be used for any flow objective.
 - 
ADD_TO_EXISTINGpublic static final Objective.Operation ADD_TO_EXISTING Add to an existing Next Objective. Should not be used for any other objective.
 - 
REMOVE_FROM_EXISTINGpublic static final Objective.Operation REMOVE_FROM_EXISTING Remove from an existing Next Objective. Should not be used for any other objective.
 - 
MODIFYpublic static final Objective.Operation MODIFY Modify an existing Next Objective. Can be used to modify group buckets.
 - 
VERIFYpublic static final Objective.Operation VERIFY Verifies that an existing Next Objective's collection of treatments are correctly represented by the underlying implementation of the objective. Corrective action is taken if discrepancies are found during verification. For example, if the next objective defines 3 sets of treatments, which are meant to be implemented as 3 buckets in a group, but verification finds less or more buckets, then the appropriate buckets are added or removed to match the objective. Should not be used for any other objective.
 
- 
 - 
Method Detail- 
valuespublic static Objective.Operation[] 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 (Objective.Operation c : Objective.Operation.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Objective.Operation valueOf(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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-