Class StringLiteralAstNode
- 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.StringLiteralAstNode
-
- All Implemented Interfaces:
AstNode
public class StringLiteralAstNode extends LiteralAstNode
AST node for a quoted string literal.
-
-
Constructor Summary
Constructors Constructor Description StringLiteralAstNode(String text)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetText()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
-
-
-
-
Constructor Detail
-
StringLiteralAstNode
public StringLiteralAstNode(String text)
-
-
Method Detail
-
getText
public String getText()
-
toString
public String toString()
- Overrides:
toStringin classBaseAstNode
-
getValueAsString
public String getValueAsString()
- Specified by:
getValueAsStringin classLiteralAstNode
-
-