Enum Constant and Description |
---|
ALL |
AND |
AND_FILTER |
ANDNOT |
ANY |
EQUALS |
MATCH_ALL |
NOT_EQUALS |
OR |
OR_FILTER |
PHRASE |
PROX |
QUERY_FILTER |
RANGE_GREATER_OR_EQUAL |
RANGE_GREATER_THAN |
RANGE_LESS_OR_EQUALS |
RANGE_LESS_THAN |
RANGE_WITHIN |
SORT |
TERM_FILTER |
TERMS_FACET |
Modifier and Type | Method and Description |
---|---|
void |
accept(Visitor visitor) |
int |
getArity() |
TokenType |
getType() |
boolean |
isVisible() |
java.lang.String |
toString() |
static Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator EQUALS
public static final Operator NOT_EQUALS
public static final Operator RANGE_LESS_THAN
public static final Operator RANGE_LESS_OR_EQUALS
public static final Operator RANGE_GREATER_THAN
public static final Operator RANGE_GREATER_OR_EQUAL
public static final Operator RANGE_WITHIN
public static final Operator AND
public static final Operator ANDNOT
public static final Operator OR
public static final Operator PROX
public static final Operator ALL
public static final Operator ANY
public static final Operator PHRASE
public static final Operator TERM_FILTER
public static final Operator QUERY_FILTER
public static final Operator SORT
public static final Operator TERMS_FACET
public static final Operator OR_FILTER
public static final Operator AND_FILTER
public static final Operator MATCH_ALL
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static Operator 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 int getArity()
public java.lang.String toString()
toString
in class java.lang.Enum<Operator>