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