Interface CQLVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
CQLBaseVisitor
public interface CQLVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
CQLParser
.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byCQLParser.constantTest()
.Visit a parse tree produced byCQLParser.enumLiteral()
.Visit a parse tree produced byCQLParser.expression()
.Visit a parse tree produced byCQLParser.groupedTest()
.Visit a parse tree produced byCQLParser.instanceOfTest()
.Visit a parse tree produced byCQLParser.literal()
.Visit a parse tree produced byCQLParser.negativeTest()
.Visit a parse tree produced byCQLParser.primary()
.Visit a parse tree produced byCQLParser.propertyTest()
.Visit a parse tree produced byCQLParser.qualifiedName()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitExpression
Visit a parse tree produced byCQLParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPrimary
Visit a parse tree produced byCQLParser.primary()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNegativeTest
Visit a parse tree produced byCQLParser.negativeTest()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGroupedTest
Visit a parse tree produced byCQLParser.groupedTest()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitConstantTest
Visit a parse tree produced byCQLParser.constantTest()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPropertyTest
Visit a parse tree produced byCQLParser.propertyTest()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInstanceOfTest
Visit a parse tree produced byCQLParser.instanceOfTest()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitQualifiedName
Visit a parse tree produced byCQLParser.qualifiedName()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteral
Visit a parse tree produced byCQLParser.literal()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitEnumLiteral
Visit a parse tree produced byCQLParser.enumLiteral()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-