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