public enum Predicate extends Enum<Predicate>
| Enum Constant and Description |
|---|
CONTAINS |
CONTAINS_KEY |
EQ |
GT |
GTE |
IN |
LT |
LTE |
NEQ |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Predicate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Predicate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Predicate EQ
public static final Predicate NEQ
public static final Predicate LT
public static final Predicate GT
public static final Predicate LTE
public static final Predicate GTE
public static final Predicate IN
public static final Predicate CONTAINS
public static final Predicate CONTAINS_KEY
public static Predicate[] values()
for (Predicate c : Predicate.values()) System.out.println(c);
public static Predicate 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 © 2022. All rights reserved.