Interface CQLListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
CQLBaseListener
public interface CQLListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
CQLParser
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced byCQLParser.constantTest()
.void
Enter a parse tree produced byCQLParser.enumLiteral()
.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
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()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterExpression
Enter a parse tree produced byCQLParser.expression()
.- Parameters:
ctx
- the parse tree
-
exitExpression
Exit a parse tree produced byCQLParser.expression()
.- Parameters:
ctx
- the parse tree
-
enterPrimary
Enter a parse tree produced byCQLParser.primary()
.- Parameters:
ctx
- the parse tree
-
exitPrimary
Exit a parse tree produced byCQLParser.primary()
.- Parameters:
ctx
- the parse tree
-
enterNegativeTest
Enter a parse tree produced byCQLParser.negativeTest()
.- Parameters:
ctx
- the parse tree
-
exitNegativeTest
Exit a parse tree produced byCQLParser.negativeTest()
.- Parameters:
ctx
- the parse tree
-
enterGroupedTest
Enter a parse tree produced byCQLParser.groupedTest()
.- Parameters:
ctx
- the parse tree
-
exitGroupedTest
Exit a parse tree produced byCQLParser.groupedTest()
.- Parameters:
ctx
- the parse tree
-
enterConstantTest
Enter a parse tree produced byCQLParser.constantTest()
.- Parameters:
ctx
- the parse tree
-
exitConstantTest
Exit a parse tree produced byCQLParser.constantTest()
.- Parameters:
ctx
- the parse tree
-
enterPropertyTest
Enter a parse tree produced byCQLParser.propertyTest()
.- Parameters:
ctx
- the parse tree
-
exitPropertyTest
Exit a parse tree produced byCQLParser.propertyTest()
.- Parameters:
ctx
- the parse tree
-
enterInstanceOfTest
Enter a parse tree produced byCQLParser.instanceOfTest()
.- Parameters:
ctx
- the parse tree
-
exitInstanceOfTest
Exit a parse tree produced byCQLParser.instanceOfTest()
.- Parameters:
ctx
- the parse tree
-
enterQualifiedName
Enter a parse tree produced byCQLParser.qualifiedName()
.- Parameters:
ctx
- the parse tree
-
exitQualifiedName
Exit a parse tree produced byCQLParser.qualifiedName()
.- Parameters:
ctx
- the parse tree
-
enterLiteral
Enter a parse tree produced byCQLParser.literal()
.- Parameters:
ctx
- the parse tree
-
exitLiteral
Exit a parse tree produced byCQLParser.literal()
.- Parameters:
ctx
- the parse tree
-
enterEnumLiteral
Enter a parse tree produced byCQLParser.enumLiteral()
.- Parameters:
ctx
- the parse tree
-
exitEnumLiteral
Exit a parse tree produced byCQLParser.enumLiteral()
.- Parameters:
ctx
- the parse tree
-