public enum IntOperator extends java.lang.Enum<IntOperator>
| 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(int pIntA,
int pIntB) |
static IntOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntOperator EQUALS
public static final IntOperator NOT_EQUALS
public static final IntOperator LESS_THAN
public static final IntOperator LESS_OR_EQUAL_THAN
public static final IntOperator MORE_THAN
public static final IntOperator MORE_OR_EQUAL_THAN
public static IntOperator[] values()
for (IntOperator c : IntOperator.values()) System.out.println(c);
public static IntOperator 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(int pIntA,
int pIntB)