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 byIdentifierParser.
-
-
Method Summary
All Methods Instance Methods Abstract 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().
-
-
-
Method Detail
-
visitIdentifier
T visitIdentifier(IdentifierParser.IdentifierContext ctx)
Visit a parse tree produced byIdentifierParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyWords
T visitKeyWords(IdentifierParser.KeyWordsContext ctx)
Visit a parse tree produced byIdentifierParser.keyWords().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-