public static enum CLP.STATUS extends java.lang.Enum<CLP.STATUS>
Enum Constant and Description |
---|
ERROR |
INFEASIBLE |
LIMIT |
OPTIMAL |
UNBOUNDED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static CLP.STATUS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CLP.STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CLP.STATUS OPTIMAL
public static final CLP.STATUS INFEASIBLE
public static final CLP.STATUS UNBOUNDED
public static final CLP.STATUS LIMIT
public static final CLP.STATUS ERROR
public static final CLP.STATUS UNKNOWN
public static CLP.STATUS[] values()
for (CLP.STATUS c : CLP.STATUS.values()) System.out.println(c);
public static CLP.STATUS valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null