public static enum Predicate.PredicateType extends Enum<Predicate.PredicateType>
Enum Constant and Description |
---|
CONTAINS |
CUSTOM |
EQ |
GE |
GT |
LE |
LT |
NOT_EQ |
REGEX_FIND |
REGEX_MATCH |
REGEX_NOT_FIND |
REGEX_NOT_MATCH |
WITHIN |
Modifier and Type | Method and Description |
---|---|
static Predicate.PredicateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Predicate.PredicateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Predicate.PredicateType EQ
public static final Predicate.PredicateType NOT_EQ
public static final Predicate.PredicateType LT
public static final Predicate.PredicateType GT
public static final Predicate.PredicateType LE
public static final Predicate.PredicateType GE
public static final Predicate.PredicateType REGEX_FIND
public static final Predicate.PredicateType REGEX_MATCH
public static final Predicate.PredicateType REGEX_NOT_FIND
public static final Predicate.PredicateType REGEX_NOT_MATCH
public static final Predicate.PredicateType CONTAINS
public static final Predicate.PredicateType WITHIN
public static final Predicate.PredicateType CUSTOM
public static Predicate.PredicateType[] values()
for (Predicate.PredicateType c : Predicate.PredicateType.values()) System.out.println(c);
public static Predicate.PredicateType 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 null