public static enum QueryOptions.QueryGrammar.QueryJoiner.Comparator extends Enum<QueryOptions.QueryGrammar.QueryJoiner.Comparator>
Enum Constant and Description |
---|
EQ
The Equals operation.
|
GE
The Greater-than-or-equal-to operation.
|
GT
The Greater-than operation.
|
LE
The Less-than-or-equal-to operation.
|
LT
The Less-than operation.
|
NE
The Not-equals operation.
|
Modifier and Type | Method and Description |
---|---|
static QueryOptions.QueryGrammar.QueryJoiner.Comparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryOptions.QueryGrammar.QueryJoiner.Comparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryOptions.QueryGrammar.QueryJoiner.Comparator EQ
public static final QueryOptions.QueryGrammar.QueryJoiner.Comparator GE
public static final QueryOptions.QueryGrammar.QueryJoiner.Comparator GT
public static final QueryOptions.QueryGrammar.QueryJoiner.Comparator LE
public static final QueryOptions.QueryGrammar.QueryJoiner.Comparator LT
public static final QueryOptions.QueryGrammar.QueryJoiner.Comparator NE
public static QueryOptions.QueryGrammar.QueryJoiner.Comparator[] values()
for (QueryOptions.QueryGrammar.QueryJoiner.Comparator c : QueryOptions.QueryGrammar.QueryJoiner.Comparator.values()) System.out.println(c);
public static QueryOptions.QueryGrammar.QueryJoiner.Comparator 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 © 2013-2015 MarkLogic Corporation.