Package org.ojalgo.optimisation
Enum FileFormatMPS.BoundType
- java.lang.Object
-
- java.lang.Enum<FileFormatMPS.BoundType>
-
- org.ojalgo.optimisation.FileFormatMPS.BoundType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FileFormatMPS.BoundType>
- Enclosing class:
- FileFormatMPS
static enum FileFormatMPS.BoundType extends java.lang.Enum<FileFormatMPS.BoundType>
BoundType used with the BOUNDS section.type meaning --------------------------------------------------- LO lower bound b <= x (< +inf) UP upper bound (0 <=) x <= b FX fixed variable x = b FR free variable -inf < x < +inf MI lower bound -inf -inf < x (<= 0) PL upper bound +inf (0 <=) x < +inf BV binary variable x = 0 or 1 LI integer variable b <= x (< +inf) UI integer variable (0 <=) x <= b SC semi-cont variable x = 0 or l <= x <= b l is the lower bound on the variable If none set then defaults to 1
-
-
Constructor Summary
Constructors Modifier Constructor Description private
BoundType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileFormatMPS.BoundType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FileFormatMPS.BoundType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BV
public static final FileFormatMPS.BoundType BV
-
FR
public static final FileFormatMPS.BoundType FR
-
FX
public static final FileFormatMPS.BoundType FX
-
LI
public static final FileFormatMPS.BoundType LI
-
LO
public static final FileFormatMPS.BoundType LO
-
MI
public static final FileFormatMPS.BoundType MI
-
PL
public static final FileFormatMPS.BoundType PL
-
SC
public static final FileFormatMPS.BoundType SC
-
UI
public static final FileFormatMPS.BoundType UI
-
UP
public static final FileFormatMPS.BoundType UP
-
-
Method Detail
-
values
public static FileFormatMPS.BoundType[] 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 (FileFormatMPS.BoundType c : FileFormatMPS.BoundType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileFormatMPS.BoundType 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
-
-