public class QueryBaseListener extends java.lang.Object implements QueryListener
QueryListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
QueryBaseListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
enterAnd(QueryParser.AndContext ctx)
Enter a parse tree produced by
QueryParser.and(). |
void |
enterEq(QueryParser.EqContext ctx)
Enter a parse tree produced by
QueryParser.eq(). |
void |
enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) |
void |
enterExpr(QueryParser.ExprContext ctx)
Enter a parse tree produced by
QueryParser.expr(). |
void |
enterGt(QueryParser.GtContext ctx)
Enter a parse tree produced by
QueryParser.gt(). |
void |
enterGte(QueryParser.GteContext ctx)
Enter a parse tree produced by
QueryParser.gte(). |
void |
enterKeyvalue(QueryParser.KeyvalueContext ctx)
Enter a parse tree produced by
QueryParser.keyvalue(). |
void |
enterLt(QueryParser.LtContext ctx)
Enter a parse tree produced by
QueryParser.lt(). |
void |
enterLte(QueryParser.LteContext ctx)
Enter a parse tree produced by
QueryParser.lte(). |
void |
enterNot(QueryParser.NotContext ctx)
Enter a parse tree produced by
QueryParser.not(). |
void |
enterOr(QueryParser.OrContext ctx)
Enter a parse tree produced by
QueryParser.or(). |
void |
enterQuery(QueryParser.QueryContext ctx)
Enter a parse tree produced by
QueryParser.query(). |
void |
enterString(QueryParser.StringContext ctx)
Enter a parse tree produced by
QueryParser.string(). |
void |
exitAnd(QueryParser.AndContext ctx)
Exit a parse tree produced by
QueryParser.and(). |
void |
exitEq(QueryParser.EqContext ctx)
Exit a parse tree produced by
QueryParser.eq(). |
void |
exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) |
void |
exitExpr(QueryParser.ExprContext ctx)
Exit a parse tree produced by
QueryParser.expr(). |
void |
exitGt(QueryParser.GtContext ctx)
Exit a parse tree produced by
QueryParser.gt(). |
void |
exitGte(QueryParser.GteContext ctx)
Exit a parse tree produced by
QueryParser.gte(). |
void |
exitKeyvalue(QueryParser.KeyvalueContext ctx)
Exit a parse tree produced by
QueryParser.keyvalue(). |
void |
exitLt(QueryParser.LtContext ctx)
Exit a parse tree produced by
QueryParser.lt(). |
void |
exitLte(QueryParser.LteContext ctx)
Exit a parse tree produced by
QueryParser.lte(). |
void |
exitNot(QueryParser.NotContext ctx)
Exit a parse tree produced by
QueryParser.not(). |
void |
exitOr(QueryParser.OrContext ctx)
Exit a parse tree produced by
QueryParser.or(). |
void |
exitQuery(QueryParser.QueryContext ctx)
Exit a parse tree produced by
QueryParser.query(). |
void |
exitString(QueryParser.StringContext ctx)
Exit a parse tree produced by
QueryParser.string(). |
void |
visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) |
void |
visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) |
public void enterQuery(QueryParser.QueryContext ctx)
QueryParser.query().
The default implementation does nothing.
enterQuery in interface QueryListenerctx - the parse treepublic void exitQuery(QueryParser.QueryContext ctx)
QueryParser.query().
The default implementation does nothing.
exitQuery in interface QueryListenerctx - the parse treepublic void enterExpr(QueryParser.ExprContext ctx)
QueryParser.expr().
The default implementation does nothing.
enterExpr in interface QueryListenerctx - the parse treepublic void exitExpr(QueryParser.ExprContext ctx)
QueryParser.expr().
The default implementation does nothing.
exitExpr in interface QueryListenerctx - the parse treepublic void enterOr(QueryParser.OrContext ctx)
QueryParser.or().
The default implementation does nothing.
enterOr in interface QueryListenerctx - the parse treepublic void exitOr(QueryParser.OrContext ctx)
QueryParser.or().
The default implementation does nothing.
exitOr in interface QueryListenerctx - the parse treepublic void enterAnd(QueryParser.AndContext ctx)
QueryParser.and().
The default implementation does nothing.
enterAnd in interface QueryListenerctx - the parse treepublic void exitAnd(QueryParser.AndContext ctx)
QueryParser.and().
The default implementation does nothing.
exitAnd in interface QueryListenerctx - the parse treepublic void enterNot(QueryParser.NotContext ctx)
QueryParser.not().
The default implementation does nothing.
enterNot in interface QueryListenerctx - the parse treepublic void exitNot(QueryParser.NotContext ctx)
QueryParser.not().
The default implementation does nothing.
exitNot in interface QueryListenerctx - the parse treepublic void enterEq(QueryParser.EqContext ctx)
QueryParser.eq().
The default implementation does nothing.
enterEq in interface QueryListenerctx - the parse treepublic void exitEq(QueryParser.EqContext ctx)
QueryParser.eq().
The default implementation does nothing.
exitEq in interface QueryListenerctx - the parse treepublic void enterGt(QueryParser.GtContext ctx)
QueryParser.gt().
The default implementation does nothing.
enterGt in interface QueryListenerctx - the parse treepublic void exitGt(QueryParser.GtContext ctx)
QueryParser.gt().
The default implementation does nothing.
exitGt in interface QueryListenerctx - the parse treepublic void enterGte(QueryParser.GteContext ctx)
QueryParser.gte().
The default implementation does nothing.
enterGte in interface QueryListenerctx - the parse treepublic void exitGte(QueryParser.GteContext ctx)
QueryParser.gte().
The default implementation does nothing.
exitGte in interface QueryListenerctx - the parse treepublic void enterLt(QueryParser.LtContext ctx)
QueryParser.lt().
The default implementation does nothing.
enterLt in interface QueryListenerctx - the parse treepublic void exitLt(QueryParser.LtContext ctx)
QueryParser.lt().
The default implementation does nothing.
exitLt in interface QueryListenerctx - the parse treepublic void enterLte(QueryParser.LteContext ctx)
QueryParser.lte().
The default implementation does nothing.
enterLte in interface QueryListenerctx - the parse treepublic void exitLte(QueryParser.LteContext ctx)
QueryParser.lte().
The default implementation does nothing.
exitLte in interface QueryListenerctx - the parse treepublic void enterKeyvalue(QueryParser.KeyvalueContext ctx)
QueryParser.keyvalue().
The default implementation does nothing.
enterKeyvalue in interface QueryListenerctx - the parse treepublic void exitKeyvalue(QueryParser.KeyvalueContext ctx)
QueryParser.keyvalue().
The default implementation does nothing.
exitKeyvalue in interface QueryListenerctx - the parse treepublic void enterString(QueryParser.StringContext ctx)
QueryParser.string().
The default implementation does nothing.
enterString in interface QueryListenerctx - the parse treepublic void exitString(QueryParser.StringContext ctx)
QueryParser.string().
The default implementation does nothing.
exitString in interface QueryListenerctx - the parse treepublic void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
enterEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
exitEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
visitTerminal in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
visitErrorNode in interface org.antlr.v4.runtime.tree.ParseTreeListener