Class PQL2BaseListener
- java.lang.Object
-
- org.apache.pinot.pql.parsers.PQL2BaseListener
-
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeListener,PQL2Listener
- Direct Known Subclasses:
Pql2AstListener
public class PQL2BaseListener extends Object implements PQL2Listener
This class provides an empty implementation ofPQL2Listener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description PQL2BaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterRoot
public void enterRoot(PQL2Parser.RootContext ctx)
Enter a parse tree produced byPQL2Parser.root().The default implementation does nothing.
- Specified by:
enterRootin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitRoot
public void exitRoot(PQL2Parser.RootContext ctx)
Exit a parse tree produced byPQL2Parser.root().The default implementation does nothing.
- Specified by:
exitRootin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterStatement
public void enterStatement(PQL2Parser.StatementContext ctx)
Enter a parse tree produced byPQL2Parser.statement().The default implementation does nothing.
- Specified by:
enterStatementin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitStatement
public void exitStatement(PQL2Parser.StatementContext ctx)
Exit a parse tree produced byPQL2Parser.statement().The default implementation does nothing.
- Specified by:
exitStatementin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterSelect
public void enterSelect(PQL2Parser.SelectContext ctx)
Enter a parse tree produced by theSelectlabeled alternative inPQL2Parser.selectStatement().The default implementation does nothing.
- Specified by:
enterSelectin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitSelect
public void exitSelect(PQL2Parser.SelectContext ctx)
Exit a parse tree produced by theSelectlabeled alternative inPQL2Parser.selectStatement().The default implementation does nothing.
- Specified by:
exitSelectin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterWhere
public void enterWhere(PQL2Parser.WhereContext ctx)
Enter a parse tree produced by theWherelabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
enterWherein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitWhere
public void exitWhere(PQL2Parser.WhereContext ctx)
Exit a parse tree produced by theWherelabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
exitWherein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterGroupBy
public void enterGroupBy(PQL2Parser.GroupByContext ctx)
Enter a parse tree produced by theGroupBylabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
enterGroupByin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitGroupBy
public void exitGroupBy(PQL2Parser.GroupByContext ctx)
Exit a parse tree produced by theGroupBylabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
exitGroupByin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterHaving
public void enterHaving(PQL2Parser.HavingContext ctx)
Enter a parse tree produced by theHavinglabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
enterHavingin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitHaving
public void exitHaving(PQL2Parser.HavingContext ctx)
Exit a parse tree produced by theHavinglabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
exitHavingin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterOrderBy
public void enterOrderBy(PQL2Parser.OrderByContext ctx)
Enter a parse tree produced by theOrderBylabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
enterOrderByin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitOrderBy
public void exitOrderBy(PQL2Parser.OrderByContext ctx)
Exit a parse tree produced by theOrderBylabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
exitOrderByin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterTop
public void enterTop(PQL2Parser.TopContext ctx)
Enter a parse tree produced by theToplabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
enterTopin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitTop
public void exitTop(PQL2Parser.TopContext ctx)
Exit a parse tree produced by theToplabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
exitTopin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterLimit
public void enterLimit(PQL2Parser.LimitContext ctx)
Enter a parse tree produced by theLimitlabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
enterLimitin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitLimit
public void exitLimit(PQL2Parser.LimitContext ctx)
Exit a parse tree produced by theLimitlabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
exitLimitin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterOptions
public void enterOptions(PQL2Parser.OptionsContext ctx)
Enter a parse tree produced by theOptionslabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
enterOptionsin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitOptions
public void exitOptions(PQL2Parser.OptionsContext ctx)
Exit a parse tree produced by theOptionslabeled alternative inPQL2Parser.optionalClause().The default implementation does nothing.
- Specified by:
exitOptionsin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterStarColumnList
public void enterStarColumnList(PQL2Parser.StarColumnListContext ctx)
Enter a parse tree produced by theStarColumnListlabeled alternative inPQL2Parser.outputColumns().The default implementation does nothing.
- Specified by:
enterStarColumnListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitStarColumnList
public void exitStarColumnList(PQL2Parser.StarColumnListContext ctx)
Exit a parse tree produced by theStarColumnListlabeled alternative inPQL2Parser.outputColumns().The default implementation does nothing.
- Specified by:
exitStarColumnListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterOutputColumnList
public void enterOutputColumnList(PQL2Parser.OutputColumnListContext ctx)
Enter a parse tree produced by theOutputColumnListlabeled alternative inPQL2Parser.outputColumns().The default implementation does nothing.
- Specified by:
enterOutputColumnListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitOutputColumnList
public void exitOutputColumnList(PQL2Parser.OutputColumnListContext ctx)
Exit a parse tree produced by theOutputColumnListlabeled alternative inPQL2Parser.outputColumns().The default implementation does nothing.
- Specified by:
exitOutputColumnListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterOutputColumn
public void enterOutputColumn(PQL2Parser.OutputColumnContext ctx)
Enter a parse tree produced by theOutputColumnlabeled alternative inPQL2Parser.outputColumnProjection().The default implementation does nothing.
- Specified by:
enterOutputColumnin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitOutputColumn
public void exitOutputColumn(PQL2Parser.OutputColumnContext ctx)
Exit a parse tree produced by theOutputColumnlabeled alternative inPQL2Parser.outputColumnProjection().The default implementation does nothing.
- Specified by:
exitOutputColumnin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterExpressionParenthesisGroup
public void enterExpressionParenthesisGroup(PQL2Parser.ExpressionParenthesisGroupContext ctx)
Enter a parse tree produced by theExpressionParenthesisGrouplabeled alternative inPQL2Parser.expression().The default implementation does nothing.
- Specified by:
enterExpressionParenthesisGroupin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitExpressionParenthesisGroup
public void exitExpressionParenthesisGroup(PQL2Parser.ExpressionParenthesisGroupContext ctx)
Exit a parse tree produced by theExpressionParenthesisGrouplabeled alternative inPQL2Parser.expression().The default implementation does nothing.
- Specified by:
exitExpressionParenthesisGroupin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterIdentifier
public void enterIdentifier(PQL2Parser.IdentifierContext ctx)
Enter a parse tree produced by theIdentifierlabeled alternative inPQL2Parser.expression().The default implementation does nothing.
- Specified by:
enterIdentifierin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitIdentifier
public void exitIdentifier(PQL2Parser.IdentifierContext ctx)
Exit a parse tree produced by theIdentifierlabeled alternative inPQL2Parser.expression().The default implementation does nothing.
- Specified by:
exitIdentifierin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterConstant
public void enterConstant(PQL2Parser.ConstantContext ctx)
Enter a parse tree produced by theConstantlabeled alternative inPQL2Parser.expression().The default implementation does nothing.
- Specified by:
enterConstantin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitConstant
public void exitConstant(PQL2Parser.ConstantContext ctx)
Exit a parse tree produced by theConstantlabeled alternative inPQL2Parser.expression().The default implementation does nothing.
- Specified by:
exitConstantin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterBinaryMathOp
public void enterBinaryMathOp(PQL2Parser.BinaryMathOpContext ctx)
Enter a parse tree produced by theBinaryMathOplabeled alternative inPQL2Parser.expression().The default implementation does nothing.
- Specified by:
enterBinaryMathOpin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitBinaryMathOp
public void exitBinaryMathOp(PQL2Parser.BinaryMathOpContext ctx)
Exit a parse tree produced by theBinaryMathOplabeled alternative inPQL2Parser.expression().The default implementation does nothing.
- Specified by:
exitBinaryMathOpin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterFunctionCall
public void enterFunctionCall(PQL2Parser.FunctionCallContext ctx)
Enter a parse tree produced by theFunctionCalllabeled alternative inPQL2Parser.expression().The default implementation does nothing.
- Specified by:
enterFunctionCallin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitFunctionCall
public void exitFunctionCall(PQL2Parser.FunctionCallContext ctx)
Exit a parse tree produced by theFunctionCalllabeled alternative inPQL2Parser.expression().The default implementation does nothing.
- Specified by:
exitFunctionCallin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterExpressionList
public void enterExpressionList(PQL2Parser.ExpressionListContext ctx)
Enter a parse tree produced by theExpressionListlabeled alternative inPQL2Parser.expressions().The default implementation does nothing.
- Specified by:
enterExpressionListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitExpressionList
public void exitExpressionList(PQL2Parser.ExpressionListContext ctx)
Exit a parse tree produced by theExpressionListlabeled alternative inPQL2Parser.expressions().The default implementation does nothing.
- Specified by:
exitExpressionListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterStarExpression
public void enterStarExpression(PQL2Parser.StarExpressionContext ctx)
Enter a parse tree produced by theStarExpressionlabeled alternative inPQL2Parser.expressions().The default implementation does nothing.
- Specified by:
enterStarExpressionin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitStarExpression
public void exitStarExpression(PQL2Parser.StarExpressionContext ctx)
Exit a parse tree produced by theStarExpressionlabeled alternative inPQL2Parser.expressions().The default implementation does nothing.
- Specified by:
exitStarExpressionin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterBinaryMathOperator
public void enterBinaryMathOperator(PQL2Parser.BinaryMathOperatorContext ctx)
Enter a parse tree produced byPQL2Parser.binaryMathOperator().The default implementation does nothing.
- Specified by:
enterBinaryMathOperatorin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitBinaryMathOperator
public void exitBinaryMathOperator(PQL2Parser.BinaryMathOperatorContext ctx)
Exit a parse tree produced byPQL2Parser.binaryMathOperator().The default implementation does nothing.
- Specified by:
exitBinaryMathOperatorin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterFunction
public void enterFunction(PQL2Parser.FunctionContext ctx)
Enter a parse tree produced byPQL2Parser.function().The default implementation does nothing.
- Specified by:
enterFunctionin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitFunction
public void exitFunction(PQL2Parser.FunctionContext ctx)
Exit a parse tree produced byPQL2Parser.function().The default implementation does nothing.
- Specified by:
exitFunctionin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterTableName
public void enterTableName(PQL2Parser.TableNameContext ctx)
Enter a parse tree produced byPQL2Parser.tableName().The default implementation does nothing.
- Specified by:
enterTableNamein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitTableName
public void exitTableName(PQL2Parser.TableNameContext ctx)
Exit a parse tree produced byPQL2Parser.tableName().The default implementation does nothing.
- Specified by:
exitTableNamein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterStringLiteral
public void enterStringLiteral(PQL2Parser.StringLiteralContext ctx)
Enter a parse tree produced by theStringLiterallabeled alternative inPQL2Parser.literal().The default implementation does nothing.
- Specified by:
enterStringLiteralin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitStringLiteral
public void exitStringLiteral(PQL2Parser.StringLiteralContext ctx)
Exit a parse tree produced by theStringLiterallabeled alternative inPQL2Parser.literal().The default implementation does nothing.
- Specified by:
exitStringLiteralin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterIntegerLiteral
public void enterIntegerLiteral(PQL2Parser.IntegerLiteralContext ctx)
Enter a parse tree produced by theIntegerLiterallabeled alternative inPQL2Parser.literal().The default implementation does nothing.
- Specified by:
enterIntegerLiteralin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitIntegerLiteral
public void exitIntegerLiteral(PQL2Parser.IntegerLiteralContext ctx)
Exit a parse tree produced by theIntegerLiterallabeled alternative inPQL2Parser.literal().The default implementation does nothing.
- Specified by:
exitIntegerLiteralin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterFloatingPointLiteral
public void enterFloatingPointLiteral(PQL2Parser.FloatingPointLiteralContext ctx)
Enter a parse tree produced by theFloatingPointLiterallabeled alternative inPQL2Parser.literal().The default implementation does nothing.
- Specified by:
enterFloatingPointLiteralin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitFloatingPointLiteral
public void exitFloatingPointLiteral(PQL2Parser.FloatingPointLiteralContext ctx)
Exit a parse tree produced by theFloatingPointLiterallabeled alternative inPQL2Parser.literal().The default implementation does nothing.
- Specified by:
exitFloatingPointLiteralin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterWhereClause
public void enterWhereClause(PQL2Parser.WhereClauseContext ctx)
Enter a parse tree produced byPQL2Parser.whereClause().The default implementation does nothing.
- Specified by:
enterWhereClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitWhereClause
public void exitWhereClause(PQL2Parser.WhereClauseContext ctx)
Exit a parse tree produced byPQL2Parser.whereClause().The default implementation does nothing.
- Specified by:
exitWhereClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterPredicateList
public void enterPredicateList(PQL2Parser.PredicateListContext ctx)
Enter a parse tree produced byPQL2Parser.predicateList().The default implementation does nothing.
- Specified by:
enterPredicateListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitPredicateList
public void exitPredicateList(PQL2Parser.PredicateListContext ctx)
Exit a parse tree produced byPQL2Parser.predicateList().The default implementation does nothing.
- Specified by:
exitPredicateListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterPredicateParenthesisGroup
public void enterPredicateParenthesisGroup(PQL2Parser.PredicateParenthesisGroupContext ctx)
Enter a parse tree produced by thePredicateParenthesisGrouplabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
enterPredicateParenthesisGroupin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitPredicateParenthesisGroup
public void exitPredicateParenthesisGroup(PQL2Parser.PredicateParenthesisGroupContext ctx)
Exit a parse tree produced by thePredicateParenthesisGrouplabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
exitPredicateParenthesisGroupin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterComparisonPredicate
public void enterComparisonPredicate(PQL2Parser.ComparisonPredicateContext ctx)
Enter a parse tree produced by theComparisonPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
enterComparisonPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitComparisonPredicate
public void exitComparisonPredicate(PQL2Parser.ComparisonPredicateContext ctx)
Exit a parse tree produced by theComparisonPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
exitComparisonPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterInPredicate
public void enterInPredicate(PQL2Parser.InPredicateContext ctx)
Enter a parse tree produced by theInPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
enterInPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitInPredicate
public void exitInPredicate(PQL2Parser.InPredicateContext ctx)
Exit a parse tree produced by theInPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
exitInPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterBetweenPredicate
public void enterBetweenPredicate(PQL2Parser.BetweenPredicateContext ctx)
Enter a parse tree produced by theBetweenPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
enterBetweenPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitBetweenPredicate
public void exitBetweenPredicate(PQL2Parser.BetweenPredicateContext ctx)
Exit a parse tree produced by theBetweenPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
exitBetweenPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterIsPredicate
public void enterIsPredicate(PQL2Parser.IsPredicateContext ctx)
Enter a parse tree produced by theIsPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
enterIsPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitIsPredicate
public void exitIsPredicate(PQL2Parser.IsPredicateContext ctx)
Exit a parse tree produced by theIsPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
exitIsPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterRegexpLikePredicate
public void enterRegexpLikePredicate(PQL2Parser.RegexpLikePredicateContext ctx)
Enter a parse tree produced by theRegexpLikePredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
enterRegexpLikePredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitRegexpLikePredicate
public void exitRegexpLikePredicate(PQL2Parser.RegexpLikePredicateContext ctx)
Exit a parse tree produced by theRegexpLikePredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
exitRegexpLikePredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterTextMatchPredicate
public void enterTextMatchPredicate(PQL2Parser.TextMatchPredicateContext ctx)
Enter a parse tree produced by theTextMatchPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
enterTextMatchPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitTextMatchPredicate
public void exitTextMatchPredicate(PQL2Parser.TextMatchPredicateContext ctx)
Exit a parse tree produced by theTextMatchPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
exitTextMatchPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterJsonMatchPredicate
public void enterJsonMatchPredicate(PQL2Parser.JsonMatchPredicateContext ctx)
Enter a parse tree produced by theJsonMatchPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
enterJsonMatchPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitJsonMatchPredicate
public void exitJsonMatchPredicate(PQL2Parser.JsonMatchPredicateContext ctx)
Exit a parse tree produced by theJsonMatchPredicatelabeled alternative inPQL2Parser.predicate().The default implementation does nothing.
- Specified by:
exitJsonMatchPredicatein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterInClause
public void enterInClause(PQL2Parser.InClauseContext ctx)
Enter a parse tree produced byPQL2Parser.inClause().The default implementation does nothing.
- Specified by:
enterInClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitInClause
public void exitInClause(PQL2Parser.InClauseContext ctx)
Exit a parse tree produced byPQL2Parser.inClause().The default implementation does nothing.
- Specified by:
exitInClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterIsClause
public void enterIsClause(PQL2Parser.IsClauseContext ctx)
Enter a parse tree produced byPQL2Parser.isClause().The default implementation does nothing.
- Specified by:
enterIsClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitIsClause
public void exitIsClause(PQL2Parser.IsClauseContext ctx)
Exit a parse tree produced byPQL2Parser.isClause().The default implementation does nothing.
- Specified by:
exitIsClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterComparisonClause
public void enterComparisonClause(PQL2Parser.ComparisonClauseContext ctx)
Enter a parse tree produced byPQL2Parser.comparisonClause().The default implementation does nothing.
- Specified by:
enterComparisonClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitComparisonClause
public void exitComparisonClause(PQL2Parser.ComparisonClauseContext ctx)
Exit a parse tree produced byPQL2Parser.comparisonClause().The default implementation does nothing.
- Specified by:
exitComparisonClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterComparisonOperator
public void enterComparisonOperator(PQL2Parser.ComparisonOperatorContext ctx)
Enter a parse tree produced byPQL2Parser.comparisonOperator().The default implementation does nothing.
- Specified by:
enterComparisonOperatorin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitComparisonOperator
public void exitComparisonOperator(PQL2Parser.ComparisonOperatorContext ctx)
Exit a parse tree produced byPQL2Parser.comparisonOperator().The default implementation does nothing.
- Specified by:
exitComparisonOperatorin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterBetweenClause
public void enterBetweenClause(PQL2Parser.BetweenClauseContext ctx)
Enter a parse tree produced byPQL2Parser.betweenClause().The default implementation does nothing.
- Specified by:
enterBetweenClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitBetweenClause
public void exitBetweenClause(PQL2Parser.BetweenClauseContext ctx)
Exit a parse tree produced byPQL2Parser.betweenClause().The default implementation does nothing.
- Specified by:
exitBetweenClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterRegexpLikeClause
public void enterRegexpLikeClause(PQL2Parser.RegexpLikeClauseContext ctx)
Enter a parse tree produced byPQL2Parser.regexpLikeClause().The default implementation does nothing.
- Specified by:
enterRegexpLikeClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitRegexpLikeClause
public void exitRegexpLikeClause(PQL2Parser.RegexpLikeClauseContext ctx)
Exit a parse tree produced byPQL2Parser.regexpLikeClause().The default implementation does nothing.
- Specified by:
exitRegexpLikeClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterTextMatchClause
public void enterTextMatchClause(PQL2Parser.TextMatchClauseContext ctx)
Enter a parse tree produced byPQL2Parser.textMatchClause().The default implementation does nothing.
- Specified by:
enterTextMatchClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitTextMatchClause
public void exitTextMatchClause(PQL2Parser.TextMatchClauseContext ctx)
Exit a parse tree produced byPQL2Parser.textMatchClause().The default implementation does nothing.
- Specified by:
exitTextMatchClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterJsonMatchClause
public void enterJsonMatchClause(PQL2Parser.JsonMatchClauseContext ctx)
Enter a parse tree produced byPQL2Parser.jsonMatchClause().The default implementation does nothing.
- Specified by:
enterJsonMatchClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitJsonMatchClause
public void exitJsonMatchClause(PQL2Parser.JsonMatchClauseContext ctx)
Exit a parse tree produced byPQL2Parser.jsonMatchClause().The default implementation does nothing.
- Specified by:
exitJsonMatchClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterBooleanOperator
public void enterBooleanOperator(PQL2Parser.BooleanOperatorContext ctx)
Enter a parse tree produced byPQL2Parser.booleanOperator().The default implementation does nothing.
- Specified by:
enterBooleanOperatorin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitBooleanOperator
public void exitBooleanOperator(PQL2Parser.BooleanOperatorContext ctx)
Exit a parse tree produced byPQL2Parser.booleanOperator().The default implementation does nothing.
- Specified by:
exitBooleanOperatorin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterGroupByClause
public void enterGroupByClause(PQL2Parser.GroupByClauseContext ctx)
Enter a parse tree produced byPQL2Parser.groupByClause().The default implementation does nothing.
- Specified by:
enterGroupByClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitGroupByClause
public void exitGroupByClause(PQL2Parser.GroupByClauseContext ctx)
Exit a parse tree produced byPQL2Parser.groupByClause().The default implementation does nothing.
- Specified by:
exitGroupByClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterGroupByList
public void enterGroupByList(PQL2Parser.GroupByListContext ctx)
Enter a parse tree produced byPQL2Parser.groupByList().The default implementation does nothing.
- Specified by:
enterGroupByListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitGroupByList
public void exitGroupByList(PQL2Parser.GroupByListContext ctx)
Exit a parse tree produced byPQL2Parser.groupByList().The default implementation does nothing.
- Specified by:
exitGroupByListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterHavingClause
public void enterHavingClause(PQL2Parser.HavingClauseContext ctx)
Enter a parse tree produced byPQL2Parser.havingClause().The default implementation does nothing.
- Specified by:
enterHavingClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitHavingClause
public void exitHavingClause(PQL2Parser.HavingClauseContext ctx)
Exit a parse tree produced byPQL2Parser.havingClause().The default implementation does nothing.
- Specified by:
exitHavingClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterOrderByClause
public void enterOrderByClause(PQL2Parser.OrderByClauseContext ctx)
Enter a parse tree produced byPQL2Parser.orderByClause().The default implementation does nothing.
- Specified by:
enterOrderByClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitOrderByClause
public void exitOrderByClause(PQL2Parser.OrderByClauseContext ctx)
Exit a parse tree produced byPQL2Parser.orderByClause().The default implementation does nothing.
- Specified by:
exitOrderByClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterOrderByList
public void enterOrderByList(PQL2Parser.OrderByListContext ctx)
Enter a parse tree produced byPQL2Parser.orderByList().The default implementation does nothing.
- Specified by:
enterOrderByListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitOrderByList
public void exitOrderByList(PQL2Parser.OrderByListContext ctx)
Exit a parse tree produced byPQL2Parser.orderByList().The default implementation does nothing.
- Specified by:
exitOrderByListin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterOrderByExpression
public void enterOrderByExpression(PQL2Parser.OrderByExpressionContext ctx)
Enter a parse tree produced byPQL2Parser.orderByExpression().The default implementation does nothing.
- Specified by:
enterOrderByExpressionin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitOrderByExpression
public void exitOrderByExpression(PQL2Parser.OrderByExpressionContext ctx)
Exit a parse tree produced byPQL2Parser.orderByExpression().The default implementation does nothing.
- Specified by:
exitOrderByExpressionin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterOrdering
public void enterOrdering(PQL2Parser.OrderingContext ctx)
Enter a parse tree produced byPQL2Parser.ordering().The default implementation does nothing.
- Specified by:
enterOrderingin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitOrdering
public void exitOrdering(PQL2Parser.OrderingContext ctx)
Exit a parse tree produced byPQL2Parser.ordering().The default implementation does nothing.
- Specified by:
exitOrderingin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterTopClause
public void enterTopClause(PQL2Parser.TopClauseContext ctx)
Enter a parse tree produced byPQL2Parser.topClause().The default implementation does nothing.
- Specified by:
enterTopClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitTopClause
public void exitTopClause(PQL2Parser.TopClauseContext ctx)
Exit a parse tree produced byPQL2Parser.topClause().The default implementation does nothing.
- Specified by:
exitTopClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterLimitClause
public void enterLimitClause(PQL2Parser.LimitClauseContext ctx)
Enter a parse tree produced byPQL2Parser.limitClause().The default implementation does nothing.
- Specified by:
enterLimitClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitLimitClause
public void exitLimitClause(PQL2Parser.LimitClauseContext ctx)
Exit a parse tree produced byPQL2Parser.limitClause().The default implementation does nothing.
- Specified by:
exitLimitClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterOptionListClause
public void enterOptionListClause(PQL2Parser.OptionListClauseContext ctx)
Enter a parse tree produced byPQL2Parser.optionListClause().The default implementation does nothing.
- Specified by:
enterOptionListClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitOptionListClause
public void exitOptionListClause(PQL2Parser.OptionListClauseContext ctx)
Exit a parse tree produced byPQL2Parser.optionListClause().The default implementation does nothing.
- Specified by:
exitOptionListClausein interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterOption
public void enterOption(PQL2Parser.OptionContext ctx)
Enter a parse tree produced byPQL2Parser.option().The default implementation does nothing.
- Specified by:
enterOptionin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
exitOption
public void exitOption(PQL2Parser.OptionContext ctx)
Exit a parse tree produced byPQL2Parser.option().The default implementation does nothing.
- Specified by:
exitOptionin interfacePQL2Listener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-