Package org.hibernate.grammars.importsql
Interface SqlScriptParserVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
SqlScriptParserBaseVisitor
,SqlScriptVisitor
public interface SqlScriptParserVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
SqlScriptParser
.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced bySqlScriptParser.command()
.Visit a parse tree produced bySqlScriptParser.commandBlock()
.Visit a parse tree produced bySqlScriptParser.script()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitScript
Visit a parse tree produced bySqlScriptParser.script()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitCommandBlock
Visit a parse tree produced bySqlScriptParser.commandBlock()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitCommand
Visit a parse tree produced bySqlScriptParser.command()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-