public static enum Condition.Op extends Enum<Condition.Op>
| Enum Constant and Description |
|---|
EQUAL
The Value at the specified path is equal to the reference value.
|
GREATER
The Value at the specified path is greater than the reference value.
|
GREATER_OR_EQUAL
The Value at the specified path is greater than or equal to the
reference value.
Reference value type: All scalars
Value.Type i.e [NULL, BOOLEAN, STRING, BYTE, SHORT, INT, LONG, FLOAT, DOUBLE,
DECIMAL, DATE, TIME, TIMESTAMP, INTERVAL, BINARY]. |
LESS
The Value at the specified path is less than the reference value.
|
LESS_OR_EQUAL
The Value at the specified path is less than or equal to the
reference value.
Reference value type: All scalars
Value.Type i.e [NULL, BOOLEAN, STRING, BYTE, SHORT, INT, LONG, FLOAT, DOUBLE,
DECIMAL, DATE, TIME, TIMESTAMP, INTERVAL, BINARY]. |
NOT_EQUAL
The Value at the specified path is not equal to the reference value.
|
| Modifier and Type | Method and Description |
|---|---|
static Condition.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Condition.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Condition.Op LESS
Value.Type i.e [NULL, BOOLEAN, STRING, BYTE, SHORT, INT, LONG, FLOAT, DOUBLE,
DECIMAL, DATE, TIME, TIMESTAMP, INTERVAL, BINARY].public static final Condition.Op LESS_OR_EQUAL
Value.Type i.e [NULL, BOOLEAN, STRING, BYTE, SHORT, INT, LONG, FLOAT, DOUBLE,
DECIMAL, DATE, TIME, TIMESTAMP, INTERVAL, BINARY].public static final Condition.Op EQUAL
Value.Type.public static final Condition.Op NOT_EQUAL
Value.Type.public static final Condition.Op GREATER_OR_EQUAL
Value.Type i.e [NULL, BOOLEAN, STRING, BYTE, SHORT, INT, LONG, FLOAT, DOUBLE,
DECIMAL, DATE, TIME, TIMESTAMP, INTERVAL, BINARY].public static final Condition.Op GREATER
Value.Type i.e [NULL, BOOLEAN, STRING, BYTE, SHORT, INT, LONG, FLOAT, DOUBLE,
DECIMAL, DATE, TIME, TIMESTAMP, INTERVAL, BINARY].public static Condition.Op[] values()
for (Condition.Op c : Condition.Op.values()) System.out.println(c);
public static Condition.Op 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 © 2015 Mapr Technologies, Inc.. All rights reserved.