public static enum NumberComparatorPredicate.Operator extends Enum<NumberComparatorPredicate.Operator>
| Enum Constant and Description |
|---|
EQUAL |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
LESS_THAN |
LESS_THAN_OR_EQUAL |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static NumberComparatorPredicate.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberComparatorPredicate.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberComparatorPredicate.Operator GREATER_THAN
public static final NumberComparatorPredicate.Operator GREATER_THAN_OR_EQUAL
public static final NumberComparatorPredicate.Operator LESS_THAN
public static final NumberComparatorPredicate.Operator LESS_THAN_OR_EQUAL
public static final NumberComparatorPredicate.Operator EQUAL
public static final NumberComparatorPredicate.Operator NOT_EQUAL
public static NumberComparatorPredicate.Operator[] values()
for (NumberComparatorPredicate.Operator c : NumberComparatorPredicate.Operator.values()) System.out.println(c);
public static NumberComparatorPredicate.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 © 2015–2017 Bytex Solutions. All rights reserved.