public static enum QueryCondition.Op extends Enum<QueryCondition.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 |
---|---|
String |
getTagName() |
String[] |
getTagNames() |
static QueryCondition.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryCondition.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryCondition.Op LESS
Value.Type
i.e [NULL, BOOLEAN, STRING, BYTE, SHORT, INT, LONG, FLOAT, DOUBLE,
DECIMAL, DATE, TIME, TIMESTAMP, INTERVAL, BINARY]
.public static final QueryCondition.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 QueryCondition.Op EQUAL
Value.Type
.public static final QueryCondition.Op NOT_EQUAL
Value.Type
.public static final QueryCondition.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 QueryCondition.Op GREATER
Value.Type
i.e [NULL, BOOLEAN, STRING, BYTE, SHORT, INT, LONG, FLOAT, DOUBLE,
DECIMAL, DATE, TIME, TIMESTAMP, INTERVAL, BINARY]
.public static QueryCondition.Op[] values()
for (QueryCondition.Op c : QueryCondition.Op.values()) System.out.println(c);
public static QueryCondition.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 nullpublic String getTagName()
public String[] getTagNames()
Copyright © 2015–2018 MapR Technologies, Inc.. All rights reserved.