Serializable, Comparable<Predicate>public enum Predicate extends Enum<Predicate>
| Enum Constant | Description |
|---|---|
AND |
|
BETWEEN |
|
EQUAL |
|
IN_CONSTLIST |
|
IS_NOT_NULL |
|
IS_NULL |
|
LESS |
|
LESSEQUAL |
|
LIKE |
|
NOT |
|
NOTEQUAL |
|
OR |
|
REGEXP_LIKE |
| Modifier and Type | Method | Description |
|---|---|---|
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 AND
public static final Predicate OR
public static final Predicate NOT
public static final Predicate EQUAL
public static final Predicate NOTEQUAL
public static final Predicate LESS
public static final Predicate LESSEQUAL
public static final Predicate LIKE
public static final Predicate REGEXP_LIKE
public static final Predicate BETWEEN
public static final Predicate IN_CONSTLIST
public static final Predicate IS_NULL
public static final Predicate IS_NOT_NULL
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 © 2019. All rights reserved.