Enum Operator
- All Implemented Interfaces:
Serializable
,Comparable<Operator>
,java.lang.constant.Constable
public enum Operator extends Enum<Operator>
Deprecated.
This class has been replaced by the top-level version in
com.ibm.watson.discovery.query.
Query Language Operator Syntax.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants Enum Constant Description AND
Deprecated.The and.BOOST
Deprecated.The boost.CLOSING_ARRAY
Deprecated.The closing array.CLOSING_GROUPING
Deprecated.The closing grouping.CONTAINS
Deprecated.The contains.DOUBLE_QUOTE
Deprecated.The double quote.EQUALS
Deprecated.The equals.ESCAPE
Deprecated.The escape.FIELD_SEPARATOR
Deprecated.The field separator.FUZZY
Deprecated.The fuzzy.GREATER_THAN
Deprecated.The greater than.GREATER_THAN_OR_EQUAL_TO
Deprecated.The greater than or equal to.LESS_THAN
Deprecated.The less than.LESS_THAN_OR_EQUAL_TO
Deprecated.The less than or equal to.NEST_AGGREGATION
Deprecated.The nest aggregation.NOT
Deprecated.The not.OPENING_ARRAY
Deprecated.The opening array.OPENING_GROUPING
Deprecated.The opening grouping.OR
Deprecated.The or.WILDCARD
Deprecated.The wildcard. -
Method Summary
Modifier and Type Method Description String
getSymbol()
Deprecated.Gets the symbol.boolean
shouldEscape()
Deprecated.Should escape.String
toString()
Deprecated.To string.static Operator
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static Operator[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
FIELD_SEPARATOR
Deprecated.The field separator. -
EQUALS
Deprecated.The equals. -
CONTAINS
Deprecated.The contains. -
ESCAPE
Deprecated.The escape. -
FUZZY
Deprecated.The fuzzy. -
OR
Deprecated.The or. -
AND
Deprecated.The and. -
NOT
Deprecated.The not. -
NEST_AGGREGATION
Deprecated.The nest aggregation. -
LESS_THAN
Deprecated.The less than. -
LESS_THAN_OR_EQUAL_TO
Deprecated.The less than or equal to. -
GREATER_THAN
Deprecated.The greater than. -
GREATER_THAN_OR_EQUAL_TO
Deprecated.The greater than or equal to. -
BOOST
Deprecated.The boost. -
WILDCARD
Deprecated.The wildcard. -
OPENING_GROUPING
Deprecated.The opening grouping. -
CLOSING_GROUPING
Deprecated.The closing grouping. -
OPENING_ARRAY
Deprecated.The opening array. -
CLOSING_ARRAY
Deprecated.The closing array. -
DOUBLE_QUOTE
Deprecated.The double quote.
-
-
Method Details
-
values
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getSymbol
Deprecated.Gets the symbol.- Returns:
- the symbol
-
shouldEscape
public boolean shouldEscape()Deprecated.Should escape.- Returns:
- true, if successful
-
toString
Deprecated.To string.
-