public enum Comparitor extends java.lang.Enum<Comparitor>
CQL operators.
Enum Constant and Description |
---|
ADJ |
ALL |
ANY |
CQLADJ |
CQLALL |
CQLANY |
CQLENCLOSES |
CQLWITHIN |
ENCLOSES |
EQUALS |
GREATER |
GREATER_EQUALS |
LESS |
LESS_EQUALS |
NOT_EQUALS |
WITHIN |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getToken()
Get token.
|
java.lang.String |
toString()
Write operator representation.
|
static Comparitor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Comparitor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Comparitor EQUALS
public static final Comparitor GREATER
public static final Comparitor GREATER_EQUALS
public static final Comparitor LESS
public static final Comparitor LESS_EQUALS
public static final Comparitor NOT_EQUALS
public static final Comparitor WITHIN
public static final Comparitor CQLWITHIN
public static final Comparitor ENCLOSES
public static final Comparitor CQLENCLOSES
public static final Comparitor ADJ
public static final Comparitor CQLADJ
public static final Comparitor ALL
public static final Comparitor CQLALL
public static final Comparitor ANY
public static final Comparitor CQLANY
public static Comparitor[] values()
for (Comparitor c : Comparitor.values()) System.out.println(c);
public static Comparitor 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 getToken()
Get token.
public java.lang.String toString()
Write operator representation.
toString
in class java.lang.Enum<Comparitor>