Package org.apache.iotdb.db.qp.sql
Interface IdentifierParserVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
IdentifierParserBaseVisitor
public interface IdentifierParserVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
IdentifierParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byIdentifierParser.identifier().Visit a parse tree produced byIdentifierParser.keyWords().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitIdentifier
Visit a parse tree produced byIdentifierParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyWords
Visit a parse tree produced byIdentifierParser.keyWords().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-