org.ojalgo.optimisation.linear.mps
Enum FileSection
java.lang.Object
java.lang.Enum<FileSection>
org.ojalgo.optimisation.linear.mps.FileSection
- All Implemented Interfaces:
- Serializable, Comparable<FileSection>
public enum FileSection
- extends Enum<FileSection>
|
Method Summary |
static FileSection |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FileSection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
BOUNDS
public static final FileSection BOUNDS
COLUMNS
public static final FileSection COLUMNS
ENDATA
public static final FileSection ENDATA
NAME
public static final FileSection NAME
OBJNAME
public static final FileSection OBJNAME
OBJSENSE
public static final FileSection OBJSENSE
RANGES
public static final FileSection RANGES
RHS
public static final FileSection RHS
ROWS
public static final FileSection ROWS
SOS
public static final FileSection SOS
values
public static FileSection[] 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 (FileSection c : FileSection.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static FileSection 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