类 FetcherBaseListener
java.lang.Object
org.babyfish.jimmer.sql.fetcher.FetcherBaseListener
- 所有已实现的接口:
org.antlr.v4.runtime.tree.ParseTreeListener,FetcherListener
This class provides an empty implementation of
FetcherListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明voidEnter a parse tree produced byFetcherParser.argument().voidEnter a parse tree produced byFetcherParser.entityType().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidEnter a parse tree produced byFetcherParser.fetchBody().voidEnter a parse tree produced byFetcherParser.fetcher().voidEnter a parse tree produced byFetcherParser.field().voidExit a parse tree produced byFetcherParser.argument().voidExit a parse tree produced byFetcherParser.entityType().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidExit a parse tree produced byFetcherParser.fetchBody().voidExit a parse tree produced byFetcherParser.fetcher().voidExit a parse tree produced byFetcherParser.field().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
构造器详细资料
-
FetcherBaseListener
public FetcherBaseListener()
-
-
方法详细资料
-
enterFetcher
Enter a parse tree produced byFetcherParser.fetcher().The default implementation does nothing.
- 指定者:
enterFetcher在接口中FetcherListener- 参数:
ctx- the parse tree
-
exitFetcher
Exit a parse tree produced byFetcherParser.fetcher().The default implementation does nothing.
- 指定者:
exitFetcher在接口中FetcherListener- 参数:
ctx- the parse tree
-
enterFetchBody
Enter a parse tree produced byFetcherParser.fetchBody().The default implementation does nothing.
- 指定者:
enterFetchBody在接口中FetcherListener- 参数:
ctx- the parse tree
-
exitFetchBody
Exit a parse tree produced byFetcherParser.fetchBody().The default implementation does nothing.
- 指定者:
exitFetchBody在接口中FetcherListener- 参数:
ctx- the parse tree
-
enterField
Enter a parse tree produced byFetcherParser.field().The default implementation does nothing.
- 指定者:
enterField在接口中FetcherListener- 参数:
ctx- the parse tree
-
exitField
Exit a parse tree produced byFetcherParser.field().The default implementation does nothing.
- 指定者:
exitField在接口中FetcherListener- 参数:
ctx- the parse tree
-
enterArgument
Enter a parse tree produced byFetcherParser.argument().The default implementation does nothing.
- 指定者:
enterArgument在接口中FetcherListener- 参数:
ctx- the parse tree
-
exitArgument
Exit a parse tree produced byFetcherParser.argument().The default implementation does nothing.
- 指定者:
exitArgument在接口中FetcherListener- 参数:
ctx- the parse tree
-
enterEntityType
Enter a parse tree produced byFetcherParser.entityType().The default implementation does nothing.
- 指定者:
enterEntityType在接口中FetcherListener- 参数:
ctx- the parse tree
-
exitEntityType
Exit a parse tree produced byFetcherParser.entityType().The default implementation does nothing.
- 指定者:
exitEntityType在接口中FetcherListener- 参数:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- 指定者:
enterEveryRule在接口中org.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- 指定者:
exitEveryRule在接口中org.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- 指定者:
visitTerminal在接口中org.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- 指定者:
visitErrorNode在接口中org.antlr.v4.runtime.tree.ParseTreeListener
-