Enum Class BinaryOperatorType.ParameterType
java.lang.Object
java.lang.Enum<BinaryOperatorType.ParameterType>
org.apache.camel.language.simple.types.BinaryOperatorType.ParameterType
- All Implemented Interfaces:
Serializable,Comparable<BinaryOperatorType.ParameterType>,Constable
- Enclosing class:
BinaryOperatorType
Parameter types a binary operator supports on the right hand side.
- Literal - Only literals enclosed by single quotes
- LiteralWithFunction - literals which may have embedded functions enclosed by single quotes
- Function - A function
- NumericValue - A numeric value
- BooleanValue - A boolean value
- NullValue - A null value
-
Nested Class Summary
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 TypeMethodDescriptionbooleanbooleanbooleanbooleanbooleanbooleanbooleanReturns the enum constant of this class with the specified name.static BinaryOperatorType.ParameterType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Literal
-
LiteralWithFunction
-
Function
-
NumericValue
-
BooleanValue
-
NullValue
-
MinusValue
-
-
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
-
isLiteralSupported
public boolean isLiteralSupported() -
isLiteralWithFunctionSupport
public boolean isLiteralWithFunctionSupport() -
isFunctionSupport
public boolean isFunctionSupport() -
isNumericValueSupported
public boolean isNumericValueSupported() -
isBooleanValueSupported
public boolean isBooleanValueSupported() -
isNullValueSupported
public boolean isNullValueSupported() -
isMinusValueSupported
public boolean isMinusValueSupported()
-