Class AqlParserBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>,AqlParserVisitor<T>
AqlParserVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byAqlParser.aggregateFunctionCall().Visit a parse tree produced by theclassExpressionlabeled alternative inAqlParser.classExprOperand().Visit a parse tree produced byAqlParser.columnExpr().Visit a parse tree produced byAqlParser.containsExpr().Visit a parse tree produced byAqlParser.fromClause().Visit a parse tree produced byAqlParser.fromExpr().Visit a parse tree produced byAqlParser.functionCall().Visit a parse tree produced byAqlParser.identifiedExpr().Visit a parse tree produced byAqlParser.identifiedPath().Visit a parse tree produced byAqlParser.likeOperand().Visit a parse tree produced byAqlParser.limitClause().Visit a parse tree produced byAqlParser.matchesOperand().Visit a parse tree produced byAqlParser.nameConstraint().Visit a parse tree produced byAqlParser.nodeConstraint().Visit a parse tree produced byAqlParser.numericPrimitive().Visit a parse tree produced byAqlParser.objectPath().Visit a parse tree produced byAqlParser.orderByClause().Visit a parse tree produced byAqlParser.orderByExpr().Visit a parse tree produced byAqlParser.pathPart().Visit a parse tree produced byAqlParser.pathPredicate().Visit a parse tree produced byAqlParser.pathPredicateAnd().Visit a parse tree produced byAqlParser.pathPredicateOperand().Visit a parse tree produced byAqlParser.primitive().Visit a parse tree produced byAqlParser.selectClause().Visit a parse tree produced byAqlParser.selectExpr().Visit a parse tree produced byAqlParser.selectQuery().Visit a parse tree produced byAqlParser.standardPredicate().Visit a parse tree produced byAqlParser.terminal().Visit a parse tree produced byAqlParser.terminalPredicate().Visit a parse tree produced byAqlParser.terminologyFunction().Visit a parse tree produced byAqlParser.top().Visit a parse tree produced byAqlParser.valueListItem().Visit a parse tree produced by theversionClassExprlabeled alternative inAqlParser.classExprOperand().Visit a parse tree produced byAqlParser.versionPredicate().Visit a parse tree produced byAqlParser.whereClause().Visit a parse tree produced byAqlParser.whereExpr().Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
AqlParserBaseVisitor
public AqlParserBaseVisitor()
-
-
Method Details
-
visitSelectQuery
Visit a parse tree produced byAqlParser.selectQuery().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectQueryin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectClause
Visit a parse tree produced byAqlParser.selectClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectClausein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFromClause
Visit a parse tree produced byAqlParser.fromClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFromClausein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhereClause
Visit a parse tree produced byAqlParser.whereClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWhereClausein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByClause
Visit a parse tree produced byAqlParser.orderByClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOrderByClausein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitClause
Visit a parse tree produced byAqlParser.limitClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLimitClausein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectExpr
Visit a parse tree produced byAqlParser.selectExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectExprin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFromExpr
Visit a parse tree produced byAqlParser.fromExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFromExprin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhereExpr
Visit a parse tree produced byAqlParser.whereExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWhereExprin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByExpr
Visit a parse tree produced byAqlParser.orderByExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOrderByExprin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnExpr
Visit a parse tree produced byAqlParser.columnExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnExprin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitContainsExpr
Visit a parse tree produced byAqlParser.containsExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitContainsExprin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifiedExpr
Visit a parse tree produced byAqlParser.identifiedExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIdentifiedExprin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassExpression
Visit a parse tree produced by theclassExpressionlabeled alternative inAqlParser.classExprOperand().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitClassExpressionin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVersionClassExpr
Visit a parse tree produced by theversionClassExprlabeled alternative inAqlParser.classExprOperand().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVersionClassExprin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTerminal
Visit a parse tree produced byAqlParser.terminal().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTerminalin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifiedPath
Visit a parse tree produced byAqlParser.identifiedPath().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIdentifiedPathin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathPredicate
Visit a parse tree produced byAqlParser.pathPredicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPathPredicatein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathPredicateAnd
Visit a parse tree produced byAqlParser.pathPredicateAnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPathPredicateAndin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStandardPredicate
Visit a parse tree produced byAqlParser.standardPredicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStandardPredicatein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTerminalPredicate
Visit a parse tree produced byAqlParser.terminalPredicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTerminalPredicatein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNodeConstraint
Visit a parse tree produced byAqlParser.nodeConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNodeConstraintin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNameConstraint
Visit a parse tree produced byAqlParser.nameConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNameConstraintin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVersionPredicate
Visit a parse tree produced byAqlParser.versionPredicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVersionPredicatein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathPredicateOperand
Visit a parse tree produced byAqlParser.pathPredicateOperand().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPathPredicateOperandin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectPath
Visit a parse tree produced byAqlParser.objectPath().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitObjectPathin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPathPart
Visit a parse tree produced byAqlParser.pathPart().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPathPartin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLikeOperand
Visit a parse tree produced byAqlParser.likeOperand().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLikeOperandin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMatchesOperand
Visit a parse tree produced byAqlParser.matchesOperand().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMatchesOperandin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValueListItem
Visit a parse tree produced byAqlParser.valueListItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitValueListItemin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimitive
Visit a parse tree produced byAqlParser.primitive().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrimitivein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericPrimitive
Visit a parse tree produced byAqlParser.numericPrimitive().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNumericPrimitivein interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionCall
Visit a parse tree produced byAqlParser.functionCall().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionCallin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateFunctionCall
Visit a parse tree produced byAqlParser.aggregateFunctionCall().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAggregateFunctionCallin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTerminologyFunction
Visit a parse tree produced byAqlParser.terminologyFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTerminologyFunctionin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTop
Visit a parse tree produced byAqlParser.top().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTopin interfaceAqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-