public enum Operator extends Enum<Operator>
Enum Constant and Description |
---|
AND
The and.
|
BOOST
The boost.
|
CLOSING_ARRAY
The closing array.
|
CLOSING_GROUPING
The closing grouping.
|
CONTAINS
The contains.
|
DOUBLE_QUOTE
The double quote.
|
EQUALS
The equals.
|
ESCAPE
The escape.
|
FIELD_SEPARATOR
The field separator.
|
FUZZY
The fuzzy.
|
GREATER_THAN
The greater than.
|
GREATER_THAN_OR_EQUAL_TO
The greater than or equal to.
|
LESS_THAN
The less than.
|
LESS_THAN_OR_EQUAL_TO
The less than or equal to.
|
NEST_AGGREGATION
The nest aggregation.
|
NOT
The not.
|
OPENING_ARRAY
The opening array.
|
OPENING_GROUPING
The opening grouping.
|
OR
The or.
|
WILDCARD
The wildcard.
|
Modifier and Type | Method and Description |
---|---|
String |
getSymbol()
Gets the symbol.
|
boolean |
shouldEscape()
Should escape.
|
String |
toString()
To string.
|
static Operator |
valueOf(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(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 getSymbol()
public boolean shouldEscape()
Copyright © 2023 IBM Cloud. All rights reserved.