public static enum Expression.Operation extends java.lang.Enum<Expression.Operation>
| Enum Constant and Description | 
|---|
AND  | 
EQ  | 
FALSE  | 
GT  | 
GT_EQ  | 
IN  | 
IS_NAN  | 
IS_NULL  | 
LT  | 
LT_EQ  | 
NOT  | 
NOT_EQ  | 
NOT_IN  | 
NOT_NAN  | 
NOT_NULL  | 
NOT_STARTS_WITH  | 
OR  | 
STARTS_WITH  | 
TRUE  | 
| Modifier and Type | Method and Description | 
|---|---|
Expression.Operation | 
flipLR()
Returns the equivalent operation when the left and right operands are exchanged. 
 | 
Expression.Operation | 
negate()
Returns the operation used when this is negated. 
 | 
static Expression.Operation | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Expression.Operation[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Expression.Operation TRUE
public static final Expression.Operation FALSE
public static final Expression.Operation IS_NULL
public static final Expression.Operation NOT_NULL
public static final Expression.Operation IS_NAN
public static final Expression.Operation NOT_NAN
public static final Expression.Operation LT
public static final Expression.Operation LT_EQ
public static final Expression.Operation GT
public static final Expression.Operation GT_EQ
public static final Expression.Operation EQ
public static final Expression.Operation NOT_EQ
public static final Expression.Operation IN
public static final Expression.Operation NOT_IN
public static final Expression.Operation NOT
public static final Expression.Operation AND
public static final Expression.Operation OR
public static final Expression.Operation STARTS_WITH
public static final Expression.Operation NOT_STARTS_WITH
public static Expression.Operation[] values()
for (Expression.Operation c : Expression.Operation.values()) System.out.println(c);
public static Expression.Operation 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 nullpublic Expression.Operation negate()
public Expression.Operation flipLR()