Class FloatingPointLiteralAstNode
- java.lang.Object
-
- org.apache.pinot.pql.parsers.pql2.ast.BaseAstNode
-
- org.apache.pinot.pql.parsers.pql2.ast.LiteralAstNode
-
- org.apache.pinot.pql.parsers.pql2.ast.FloatingPointLiteralAstNode
-
- All Implemented Interfaces:
AstNode
public class FloatingPointLiteralAstNode extends LiteralAstNode
Floating point literal AST node.
-
-
Constructor Summary
Constructors Constructor Description FloatingPointLiteralAstNode(double value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetValue()StringgetValueAsString()StringtoString()-
Methods inherited from class org.apache.pinot.pql.parsers.pql2.ast.BaseAstNode
addChild, doneProcessingChildren, getChildren, getParent, hasChildren, hasParent, sendBrokerRequestUpdateToChildren, sendPinotQueryUpdateToChildren, setParent, toString, updateBrokerRequest, updatePinotQuery
-
-
-
-
Method Detail
-
getValue
public double getValue()
-
toString
public String toString()
- Overrides:
toStringin classBaseAstNode
-
getValueAsString
public String getValueAsString()
- Specified by:
getValueAsStringin classLiteralAstNode
-
-