public static enum ComparatorPredicate.Criterion extends java.lang.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(java.lang.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(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 null"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"