public static enum FluxBound.Operation extends Enum<FluxBound.Operation>
| Enum Constant and Description |
|---|
EQUAL
equal
|
GREATER_EQUAL
greaterEqual
|
LESS_EQUAL
lessEqual
|
| Modifier and Type | Method and Description |
|---|---|
static FluxBound.Operation |
fromString(String value) |
String |
toString() |
static FluxBound.Operation |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<FluxBound.Operation>public static FluxBound.Operation fromString(String value)
Copyright © 2009–2016. All rights reserved.