Enum Constant and Description |
---|
AND |
BOOST |
CLOSING_ARRAY |
CLOSING_GROUPING |
CONTAINS |
DOUBLE_QUOTE |
EQUALS |
ESCAPE |
FIELD_SEPARATOR |
FUZZY |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
NEST_AGGREGATION |
NOT |
OPENING_ARRAY |
OPENING_GROUPING |
OR |
WILDCARD |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getSymbol() |
boolean |
shouldEscape() |
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 FIELD_SEPARATOR
public static final Operator EQUALS
public static final Operator CONTAINS
public static final Operator ESCAPE
public static final Operator FUZZY
public static final Operator OR
public static final Operator AND
public static final Operator NOT
public static final Operator NEST_AGGREGATION
public static final Operator LESS_THAN
public static final Operator LESS_THAN_OR_EQUAL_TO
public static final Operator GREATER_THAN
public static final Operator GREATER_THAN_OR_EQUAL_TO
public static final Operator BOOST
public static final Operator WILDCARD
public static final Operator OPENING_GROUPING
public static final Operator CLOSING_GROUPING
public static final Operator OPENING_ARRAY
public static final Operator CLOSING_ARRAY
public static final Operator DOUBLE_QUOTE
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 java.lang.String getSymbol()
public boolean shouldEscape()
public java.lang.String toString()
toString
in class java.lang.Enum<Operator>