Package org.ojalgo.optimisation.linear
Enum SimplexSolver.Direction
- java.lang.Object
-
- java.lang.Enum<SimplexSolver.Direction>
-
- org.ojalgo.optimisation.linear.SimplexSolver.Direction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SimplexSolver.Direction>
- Enclosing class:
- SimplexSolver
static enum SimplexSolver.Direction extends java.lang.Enum<SimplexSolver.Direction>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Direction()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SimplexSolver.Direction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SimplexSolver.Direction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DECREASE
public static final SimplexSolver.Direction DECREASE
-
INCREASE
public static final SimplexSolver.Direction INCREASE
-
STAY
public static final SimplexSolver.Direction STAY
-
-
Method Detail
-
values
public static SimplexSolver.Direction[] 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 (SimplexSolver.Direction c : SimplexSolver.Direction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimplexSolver.Direction valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-