public enum PredicateType extends java.lang.Enum<PredicateType>
| Enum Constant and Description |
|---|
EQUAL |
GREATER |
GREATER_OR_EQUAL |
IN |
IS_MEMBER |
IS_NULL |
LESS |
LESS_OR_EQUAL |
LIKE |
NOT_EQUAL |
NOT_IN |
NOT_IS_MEMBER |
NOT_IS_NULL |
NOT_LIKE |
| Modifier and Type | Method and Description |
|---|---|
static PredicateType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PredicateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredicateType EQUAL
public static final PredicateType LIKE
public static final PredicateType NOT_LIKE
public static final PredicateType NOT_EQUAL
public static final PredicateType GREATER
public static final PredicateType GREATER_OR_EQUAL
public static final PredicateType LESS
public static final PredicateType LESS_OR_EQUAL
public static final PredicateType IS_NULL
public static final PredicateType NOT_IS_NULL
public static final PredicateType IN
public static final PredicateType NOT_IN
public static final PredicateType IS_MEMBER
public static final PredicateType NOT_IS_MEMBER
public static PredicateType[] values()
for (PredicateType c : PredicateType.values()) System.out.println(c);
public static PredicateType 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