Package org.ojalgo.optimisation
Enum Class Optimisation.ConstraintType
- All Implemented Interfaces:
Serializable
,Comparable<Optimisation.ConstraintType>
,Constable
,Optimisation
- Enclosing interface:
Optimisation
public static enum Optimisation.ConstraintType
extends Enum<Optimisation.ConstraintType>
implements Optimisation
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface org.ojalgo.optimisation.Optimisation
Optimisation.Constraint, Optimisation.ConstraintType, Optimisation.Integration<M extends Optimisation.Model,
S extends Optimisation.Solver>, Optimisation.Model, Optimisation.Objective, Optimisation.Options, Optimisation.ProblemStructure, Optimisation.Result, Optimisation.Sense, Optimisation.Solver, Optimisation.State -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCorresponds to settingModelEntity.level(Comparable)
and/or checkingOptimisation.Constraint.isEqualityConstraint()
.Corresponds to settingModelEntity.lower(Comparable)
and/or checkingOptimisation.Constraint.isLowerConstraint()
.UnconstrainedCorresponds to settingModelEntity.upper(Comparable)
and/or checkingOptimisation.Constraint.isUpperConstraint()
. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Optimisation.ConstraintType
Returns the enum constant of this class with the specified name.static Optimisation.ConstraintType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EQUALITY
Corresponds to settingModelEntity.level(Comparable)
and/or checkingOptimisation.Constraint.isEqualityConstraint()
. -
LOWER
Corresponds to settingModelEntity.lower(Comparable)
and/or checkingOptimisation.Constraint.isLowerConstraint()
. -
NONE
Unconstrained -
UPPER
Corresponds to settingModelEntity.upper(Comparable)
and/or checkingOptimisation.Constraint.isUpperConstraint()
.
-
-
Constructor Details
-
ConstraintType
private ConstraintType()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-