public enum DoubleOperator extends java.lang.Enum<DoubleOperator>
| Enum Constant and Description |
|---|
EQUALS |
LESS_OR_EQUAL_THAN |
LESS_THAN |
MORE_OR_EQUAL_THAN |
MORE_THAN |
NOT_EQUALS |
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
check(double pDoubleA,
double pDoubleB) |
static DoubleOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DoubleOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoubleOperator EQUALS
public static final DoubleOperator NOT_EQUALS
public static final DoubleOperator LESS_THAN
public static final DoubleOperator LESS_OR_EQUAL_THAN
public static final DoubleOperator MORE_THAN
public static final DoubleOperator MORE_OR_EQUAL_THAN
public static DoubleOperator[] values()
for (DoubleOperator c : DoubleOperator.values()) System.out.println(c);
public static DoubleOperator 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 abstract boolean check(double pDoubleA,
double pDoubleB)