org.sbml.jsbml.ext.fbc
public static enum FluxBound.Operation extends java.lang.Enum<FluxBound.Operation>
Enum Constant and Description |
---|
EQUAL
equal
|
GREATER_EQUAL
greaterEqual
|
LESS_EQUAL
lessEqual
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
id
SBML attribute name.
|
Modifier and Type | Method and Description |
---|---|
static FluxBound.Operation |
fromString(java.lang.String value) |
java.lang.String |
toString() |
static FluxBound.Operation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FluxBound.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FluxBound.Operation EQUAL
public static final FluxBound.Operation GREATER_EQUAL
public static final FluxBound.Operation LESS_EQUAL
public static FluxBound.Operation[] values()
for (FluxBound.Operation c : FluxBound.Operation.values()) System.out.println(c);
public static FluxBound.Operation 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<FluxBound.Operation>
public static FluxBound.Operation fromString(java.lang.String value)