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