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