@Deprecated public static enum FluxBound.Operation extends java.lang.Enum<FluxBound.Operation>
| Enum Constant | Description |
|---|---|
EQUAL |
Deprecated.
equal
|
GREATER |
Deprecated.
greater
|
GREATER_EQUAL |
Deprecated.
greaterEqual
|
LESS |
Deprecated.
less
|
LESS_EQUAL |
Deprecated.
lessEqual
|
| Modifier and Type | Method | Description |
|---|---|---|
static FluxBound.Operation |
fromString(java.lang.String value) |
Deprecated.
|
java.lang.String |
toString() |
Deprecated.
|
static FluxBound.Operation |
valueOf(java.lang.String name) |
Deprecated.
Returns the enum constant of this type with the specified name.
|
static FluxBound.Operation[] |
values() |
Deprecated.
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 GREATER
public static final FluxBound.Operation LESS_EQUAL
public static final FluxBound.Operation LESS
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 static FluxBound.Operation fromString(java.lang.String value)
value - public java.lang.String toString()
toString in class java.lang.Enum<FluxBound.Operation>