Class CQLBaseListener
- All Implemented Interfaces:
CQLListener
,org.antlr.v4.runtime.tree.ParseTreeListener
CQLListener
,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced byCQLParser.constantTest()
.void
Enter a parse tree produced byCQLParser.enumLiteral()
.void
enterEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Enter a parse tree produced byCQLParser.expression()
.void
Enter a parse tree produced byCQLParser.groupedTest()
.void
Enter a parse tree produced byCQLParser.instanceOfTest()
.void
Enter a parse tree produced byCQLParser.literal()
.void
Enter a parse tree produced byCQLParser.negativeTest()
.void
Enter a parse tree produced byCQLParser.primary()
.void
Enter a parse tree produced byCQLParser.propertyTest()
.void
Enter a parse tree produced byCQLParser.qualifiedName()
.void
Exit a parse tree produced byCQLParser.constantTest()
.void
Exit a parse tree produced byCQLParser.enumLiteral()
.void
exitEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Exit a parse tree produced byCQLParser.expression()
.void
Exit a parse tree produced byCQLParser.groupedTest()
.void
Exit a parse tree produced byCQLParser.instanceOfTest()
.void
Exit a parse tree produced byCQLParser.literal()
.void
Exit a parse tree produced byCQLParser.negativeTest()
.void
Exit a parse tree produced byCQLParser.primary()
.void
Exit a parse tree produced byCQLParser.propertyTest()
.void
Exit a parse tree produced byCQLParser.qualifiedName()
.void
visitErrorNode
(org.antlr.v4.runtime.tree.ErrorNode node) void
visitTerminal
(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
CQLBaseListener
public CQLBaseListener()
-
-
Method Details
-
enterExpression
Enter a parse tree produced byCQLParser.expression()
.The default implementation does nothing.
- Specified by:
enterExpression
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
exitExpression
Exit a parse tree produced byCQLParser.expression()
.The default implementation does nothing.
- Specified by:
exitExpression
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
enterPrimary
Enter a parse tree produced byCQLParser.primary()
.The default implementation does nothing.
- Specified by:
enterPrimary
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
exitPrimary
Exit a parse tree produced byCQLParser.primary()
.The default implementation does nothing.
- Specified by:
exitPrimary
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
enterNegativeTest
Enter a parse tree produced byCQLParser.negativeTest()
.The default implementation does nothing.
- Specified by:
enterNegativeTest
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
exitNegativeTest
Exit a parse tree produced byCQLParser.negativeTest()
.The default implementation does nothing.
- Specified by:
exitNegativeTest
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
enterGroupedTest
Enter a parse tree produced byCQLParser.groupedTest()
.The default implementation does nothing.
- Specified by:
enterGroupedTest
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
exitGroupedTest
Exit a parse tree produced byCQLParser.groupedTest()
.The default implementation does nothing.
- Specified by:
exitGroupedTest
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
enterConstantTest
Enter a parse tree produced byCQLParser.constantTest()
.The default implementation does nothing.
- Specified by:
enterConstantTest
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
exitConstantTest
Exit a parse tree produced byCQLParser.constantTest()
.The default implementation does nothing.
- Specified by:
exitConstantTest
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
enterPropertyTest
Enter a parse tree produced byCQLParser.propertyTest()
.The default implementation does nothing.
- Specified by:
enterPropertyTest
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
exitPropertyTest
Exit a parse tree produced byCQLParser.propertyTest()
.The default implementation does nothing.
- Specified by:
exitPropertyTest
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
enterInstanceOfTest
Enter a parse tree produced byCQLParser.instanceOfTest()
.The default implementation does nothing.
- Specified by:
enterInstanceOfTest
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
exitInstanceOfTest
Exit a parse tree produced byCQLParser.instanceOfTest()
.The default implementation does nothing.
- Specified by:
exitInstanceOfTest
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
enterQualifiedName
Enter a parse tree produced byCQLParser.qualifiedName()
.The default implementation does nothing.
- Specified by:
enterQualifiedName
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
exitQualifiedName
Exit a parse tree produced byCQLParser.qualifiedName()
.The default implementation does nothing.
- Specified by:
exitQualifiedName
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
enterLiteral
Enter a parse tree produced byCQLParser.literal()
.The default implementation does nothing.
- Specified by:
enterLiteral
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
exitLiteral
Exit a parse tree produced byCQLParser.literal()
.The default implementation does nothing.
- Specified by:
exitLiteral
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
enterEnumLiteral
Enter a parse tree produced byCQLParser.enumLiteral()
.The default implementation does nothing.
- Specified by:
enterEnumLiteral
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
exitEnumLiteral
Exit a parse tree produced byCQLParser.enumLiteral()
.The default implementation does nothing.
- Specified by:
exitEnumLiteral
in interfaceCQLListener
- Parameters:
ctx
- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
enterEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
exitEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- Specified by:
visitTerminal
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- Specified by:
visitErrorNode
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-