Enum Class BinaryOperatorType
- All Implemented Interfaces:
Serializable,Comparable<BinaryOperatorType>,Constable
Types of binary operators supported
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumParameter types a binary operator supports on the right hand side.Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic BinaryOperatorTypeasOperator(String text) static StringgetOperatorText(BinaryOperatorType operator) static BinaryOperatorType.ParameterType[]supportedParameterTypes(BinaryOperatorType operator) Returns the types of right hand side parameters this operator supports.toString()static BinaryOperatorTypeReturns the enum constant of this class with the specified name.static BinaryOperatorType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EQ
-
EQ_IGNORE
-
GT
-
GTE
-
LT
-
LTE
-
NOT_EQ
-
NOT_EQ_IGNORE
-
CONTAINS
-
NOT_CONTAINS
-
CONTAINS_IGNORECASE
-
NOT_CONTAINS_IGNORECASE
-
REGEX
-
NOT_REGEX
-
IN
-
NOT_IN
-
IS
-
NOT_IS
-
RANGE
-
NOT_RANGE
-
STARTS_WITH
-
ENDS_WITH
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
asOperator
-
getOperatorText
-
supportedParameterTypes
public static BinaryOperatorType.ParameterType[] supportedParameterTypes(BinaryOperatorType operator) Returns the types of right hand side parameters this operator supports.- Parameters:
operator- the operator- Returns:
- null if accepting all types, otherwise the array of accepted types
-
toString
- Overrides:
toStringin classEnum<BinaryOperatorType>
-