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