Package org.apache.iotdb.db.qp.sql
Class IdentifierParserBaseVisitor<T>
- java.lang.Object
-
- org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
-
- org.apache.iotdb.db.qp.sql.IdentifierParserBaseVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>,IdentifierParserVisitor<T>
public class IdentifierParserBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements IdentifierParserVisitor<T>
This class provides an empty implementation ofIdentifierParserVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description IdentifierParserBaseVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TvisitIdentifier(IdentifierParser.IdentifierContext ctx)Visit a parse tree produced byIdentifierParser.identifier().TvisitKeyWords(IdentifierParser.KeyWordsContext ctx)Visit a parse tree produced byIdentifierParser.keyWords().-
Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
-
-
-
-
Method Detail
-
visitIdentifier
public T visitIdentifier(IdentifierParser.IdentifierContext ctx)
Visit a parse tree produced byIdentifierParser.identifier().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIdentifierin interfaceIdentifierParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyWords
public T visitKeyWords(IdentifierParser.KeyWordsContext ctx)
Visit a parse tree produced byIdentifierParser.keyWords().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeyWordsin interfaceIdentifierParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-