public static enum CQLQueryBuilder.Operator extends Enum<CQLQueryBuilder.Operator>
| Enum Constant and Description |
|---|
AND |
EQUAL |
EXACT |
NONE |
NOT |
NOTEQUAL |
OR |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static CQLQueryBuilder.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CQLQueryBuilder.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CQLQueryBuilder.Operator AND
public static final CQLQueryBuilder.Operator OR
public static final CQLQueryBuilder.Operator NOT
public static final CQLQueryBuilder.Operator EQUAL
public static final CQLQueryBuilder.Operator EXACT
public static final CQLQueryBuilder.Operator NOTEQUAL
public static final CQLQueryBuilder.Operator NONE
public static CQLQueryBuilder.Operator[] values()
for (CQLQueryBuilder.Operator c : CQLQueryBuilder.Operator.values()) System.out.println(c);
public static CQLQueryBuilder.Operator 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 toString()
toString in class Enum<CQLQueryBuilder.Operator>Copyright © 2020. All rights reserved.