public enum Operator extends Enum<Operator>
| Enum Constant and Description | 
|---|
| ANDThe and. | 
| BOOSTThe boost. | 
| CLOSING_ARRAYThe closing array. | 
| CLOSING_GROUPINGThe closing grouping. | 
| CONTAINSThe contains. | 
| DOUBLE_QUOTEThe double quote. | 
| EQUALSThe equals. | 
| ESCAPEThe escape. | 
| FIELD_SEPARATORThe field separator. | 
| FUZZYThe fuzzy. | 
| GREATER_THANThe greater than. | 
| GREATER_THAN_OR_EQUAL_TOThe greater than or equal to. | 
| LESS_THANThe less than. | 
| LESS_THAN_OR_EQUAL_TOThe less than or equal to. | 
| NEST_AGGREGATIONThe nest aggregation. | 
| NOTThe not. | 
| OPENING_ARRAYThe opening array. | 
| OPENING_GROUPINGThe opening grouping. | 
| ORThe or. | 
| WILDCARDThe 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.