public static enum RangedDouble.Operation extends Enum<RangedDouble.Operation>
Enum Constant and Description |
---|
EQUALS |
GREATER_THAN |
LESS_THAN |
RANGE |
Modifier and Type | Method and Description |
---|---|
static RangedDouble.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RangedDouble.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RangedDouble.Operation EQUALS
public static final RangedDouble.Operation GREATER_THAN
public static final RangedDouble.Operation LESS_THAN
public static final RangedDouble.Operation RANGE
public static RangedDouble.Operation[] values()
for (RangedDouble.Operation c : RangedDouble.Operation.values()) System.out.println(c);
public static RangedDouble.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 nullCopyright © 2019. All rights reserved.