public static enum ComparisonOp.Operators extends java.lang.Enum<ComparisonOp.Operators>
| Enum Constant and Description |
|---|
BETWEEN |
EQUALS |
GREATER_THAN |
IN |
IS |
LESS_THAN |
NOT_EQUALS |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
value() |
static ComparisonOp.Operators |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonOp.Operators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonOp.Operators BETWEEN
public static final ComparisonOp.Operators EQUALS
public static final ComparisonOp.Operators LESS_THAN
public static final ComparisonOp.Operators GREATER_THAN
public static final ComparisonOp.Operators IN
public static final ComparisonOp.Operators NOT_EQUALS
public static final ComparisonOp.Operators IS
public static final ComparisonOp.Operators STARTS_WITH
public static ComparisonOp.Operators[] values()
for (ComparisonOp.Operators c : ComparisonOp.Operators.values()) System.out.println(c);
public static ComparisonOp.Operators 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 value()