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