public static enum CompareExpr.Operator extends java.lang.Enum<CompareExpr.Operator>
Enum Constant and Description |
---|
EQ |
GT |
GTE |
IN |
LIKE |
LT |
LTE |
NEQ |
NOT_IN |
NOT_LIKE |
Modifier and Type | Method and Description |
---|---|
boolean |
allowMultipleValues() |
java.lang.String |
getValue() |
static CompareExpr.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompareExpr.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareExpr.Operator EQ
public static final CompareExpr.Operator NEQ
public static final CompareExpr.Operator GT
public static final CompareExpr.Operator GTE
public static final CompareExpr.Operator LT
public static final CompareExpr.Operator LTE
public static final CompareExpr.Operator LIKE
public static final CompareExpr.Operator NOT_LIKE
public static final CompareExpr.Operator IN
public static final CompareExpr.Operator NOT_IN
public static CompareExpr.Operator[] values()
for (CompareExpr.Operator c : CompareExpr.Operator.values()) System.out.println(c);
public static CompareExpr.Operator 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 java.lang.String getValue()
public boolean allowMultipleValues()