T - The return type of the visit operation. Use Void for
operations with no return type.public class QueryPathBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements QueryPathVisitor<T>
QueryPathVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
QueryPathBaseVisitor() |
| Modifier and Type | Method and Description |
|---|---|
T |
visitFetchNode(QueryPathParser.FetchNodeContext ctx)
Visit a parse tree produced by
QueryPathParser.fetchNode(boolean). |
T |
visitFetchPath(QueryPathParser.FetchPathContext ctx)
Visit a parse tree produced by
QueryPathParser.fetchPath(). |
T |
visitMain(QueryPathParser.MainContext ctx)
Visit a parse tree produced by
QueryPathParser.main(). |
T |
visitOrderNode(QueryPathParser.OrderNodeContext ctx)
Visit a parse tree produced by
QueryPathParser.orderNode(boolean). |
T |
visitQueryPath(QueryPathParser.QueryPathContext ctx)
Visit a parse tree produced by
QueryPathParser.queryPath(). |
T |
visitSimpleOrderPath(QueryPathParser.SimpleOrderPathContext ctx)
Visit a parse tree produced by
QueryPathParser.simpleOrderPath(). |
T |
visitSingleOrderPath(QueryPathParser.SingleOrderPathContext ctx)
Visit a parse tree produced by
QueryPathParser.singleOrderPath(). |
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalpublic T visitMain(QueryPathParser.MainContext ctx)
QueryPathParser.main().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMain in interface QueryPathVisitor<T>ctx - the parse treepublic T visitQueryPath(QueryPathParser.QueryPathContext ctx)
QueryPathParser.queryPath().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitQueryPath in interface QueryPathVisitor<T>ctx - the parse treepublic T visitFetchPath(QueryPathParser.FetchPathContext ctx)
QueryPathParser.fetchPath().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFetchPath in interface QueryPathVisitor<T>ctx - the parse treepublic T visitFetchNode(QueryPathParser.FetchNodeContext ctx)
QueryPathParser.fetchNode(boolean).
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFetchNode in interface QueryPathVisitor<T>ctx - the parse treepublic T visitSimpleOrderPath(QueryPathParser.SimpleOrderPathContext ctx)
QueryPathParser.simpleOrderPath().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSimpleOrderPath in interface QueryPathVisitor<T>ctx - the parse treepublic T visitSingleOrderPath(QueryPathParser.SingleOrderPathContext ctx)
QueryPathParser.singleOrderPath().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSingleOrderPath in interface QueryPathVisitor<T>ctx - the parse treepublic T visitOrderNode(QueryPathParser.OrderNodeContext ctx)
QueryPathParser.orderNode(boolean).
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitOrderNode in interface QueryPathVisitor<T>ctx - the parse treeCopyright © 2015. All rights reserved.