Enum Class DruidExpression.NodeType
java.lang.Object
java.lang.Enum<DruidExpression.NodeType>
org.apache.druid.sql.calcite.expression.DruidExpression.NodeType
- All Implemented Interfaces:
Serializable,Comparable<DruidExpression.NodeType>,Constable
- Enclosing class:
- DruidExpression
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionStandard native druid expression, which can compute a string that can be parsed intoExpr, or used as anExpressionVirtualColumnIdentifier for a direct physical or virtual column access (column name or virtual column name)constant valueExpression backed by a specializedVirtualColumn, which might provide more optimized evaluation than is possible with the standard -
Method Summary
Modifier and TypeMethodDescriptionstatic DruidExpression.NodeTypeReturns the enum constant of this class with the specified name.static DruidExpression.NodeType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LITERAL
constant value -
IDENTIFIER
Identifier for a direct physical or virtual column access (column name or virtual column name) -
EXPRESSION
Standard native druid expression, which can compute a string that can be parsed intoExpr, or used as anExpressionVirtualColumn -
SPECIALIZED
Expression backed by a specializedVirtualColumn, which might provide more optimized evaluation than is possible with the standard
-
-
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
-