public static enum Expression.Operator extends Enum<Expression.Operator>
| Enum Constant and Description |
|---|
AND |
CONTAINS |
EQ |
FALSE |
GT |
GT_EQ |
IN |
IS_NOT_NULL |
IS_NULL |
LT |
LT_EQ |
NOT |
OR |
STARTS_WITH |
TRUE |
| Modifier and Type | Field and Description |
|---|---|
String |
sqlOperator |
String |
symbol |
| Modifier and Type | Method and Description |
|---|---|
static Expression.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Expression.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expression.Operator TRUE
public static final Expression.Operator FALSE
public static final Expression.Operator AND
public static final Expression.Operator OR
public static final Expression.Operator GT
public static final Expression.Operator LT
public static final Expression.Operator EQ
public static final Expression.Operator GT_EQ
public static final Expression.Operator LT_EQ
public static final Expression.Operator STARTS_WITH
public static final Expression.Operator CONTAINS
public static final Expression.Operator IS_NULL
public static final Expression.Operator IS_NOT_NULL
public static final Expression.Operator IN
public static final Expression.Operator NOT
public static Expression.Operator[] values()
for (Expression.Operator c : Expression.Operator.values()) System.out.println(c);
public static Expression.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 © 2024 The Apache Software Foundation. All rights reserved.