org.ojalgo.optimisation.linear.mps
Enum FileSection

java.lang.Object
  extended by java.lang.Enum<FileSection>
      extended by org.ojalgo.optimisation.linear.mps.FileSection
All Implemented Interfaces:
Serializable, Comparable<FileSection>

public enum FileSection
extends Enum<FileSection>


Enum Constant Summary
BOUNDS
           
COLUMNS
           
ENDATA
           
NAME
           
OBJNAME
           
OBJSENSE
           
RANGES
           
RHS
           
ROWS
           
SOS
           
 
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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