T - The return type of the visit operation. Use Void for
operations with no return type.public class PathExpressionParserBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements PathExpressionParserVisitor<T>
PathExpressionParserVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
PathExpressionParserBaseVisitor() |
| Modifier and Type | Method and Description |
|---|---|
T |
visitArray_index(PathExpressionParser.Array_indexContext ctx)
Visit a parse tree produced by
PathExpressionParser.array_index(). |
T |
visitId(PathExpressionParser.IdContext ctx)
Visit a parse tree produced by
PathExpressionParser.id(). |
T |
visitPath(PathExpressionParser.PathContext ctx)
Visit a parse tree produced by the
path
labeled alternative in PathExpressionParser.expr(). |
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalpublic T visitPath(PathExpressionParser.PathContext ctx)
path
labeled alternative in PathExpressionParser.expr().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPath in interface PathExpressionParserVisitor<T>ctx - the parse treepublic T visitId(PathExpressionParser.IdContext ctx)
PathExpressionParser.id().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitId in interface PathExpressionParserVisitor<T>ctx - the parse treepublic T visitArray_index(PathExpressionParser.Array_indexContext ctx)
PathExpressionParser.array_index().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitArray_index in interface PathExpressionParserVisitor<T>ctx - the parse treeCopyright © 2021. All rights reserved.