Enum GoalType

java.lang.Object
java.lang.Enum<GoalType>
org.apache.commons.math3.optimization.GoalType
All Implemented Interfaces:
Serializable, Comparable<GoalType>

@Deprecated public enum GoalType extends Enum<GoalType> implements Serializable
Deprecated.
As of 3.1 (to be removed in 4.0).
Goal type for an optimization problem.
Since:
2.0
  • Enum Constant Details

    • MAXIMIZE

      public static final GoalType MAXIMIZE
      Deprecated.
      Maximization goal.
    • MINIMIZE

      public static final GoalType MINIMIZE
      Deprecated.
      Minimization goal.
  • Constructor Details

    • GoalType

      private GoalType()
      Deprecated.
  • Method Details

    • values

      public static GoalType[] values()
      Deprecated.
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static GoalType valueOf(String name)
      Deprecated.
      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