Enum Objective.Operation

    • Enum Constant Detail

      • ADD

        public 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.
      • REMOVE

        public static final Objective.Operation REMOVE
        Removes the objective. Can be used for any flow objective.
      • ADD_TO_EXISTING

        public static final Objective.Operation ADD_TO_EXISTING
        Add to an existing Next Objective. Should not be used for any other objective.
      • REMOVE_FROM_EXISTING

        public static final Objective.Operation REMOVE_FROM_EXISTING
        Remove from an existing Next Objective. Should not be used for any other objective.
      • MODIFY

        public static final Objective.Operation MODIFY
        Modify an existing Next Objective. Can be used to modify group buckets.
      • VERIFY

        public 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

      • values

        public 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
      • valueOf

        public 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