T - The return type of the visit operation. Use Void for
operations with no return type.public class PropertyPathBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements PropertyPathVisitor<T>
PropertyPathVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
PropertyPathBaseVisitor() |
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalpublic T visitParsePath(@NotNull PropertyPathParser.ParsePathContext ctx)
PropertyPathParser.parsePath().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParsePath in interface PropertyPathVisitor<T>ctx - the parse treepublic T visitParseProperty(@NotNull PropertyPathParser.ParsePropertyContext ctx)
PropertyPathParser.parseProperty().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParseProperty in interface PropertyPathVisitor<T>ctx - the parse treepublic T visitProperty(@NotNull PropertyPathParser.PropertyContext ctx)
PropertyPathParser.property().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitProperty in interface PropertyPathVisitor<T>ctx - the parse treepublic T visitIndexedOrAny(@NotNull PropertyPathParser.IndexedOrAnyContext ctx)
PropertyPathParser.indexedOrAny().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitIndexedOrAny in interface PropertyPathVisitor<T>ctx - the parse treepublic T visitIndex(@NotNull PropertyPathParser.IndexContext ctx)
PropertyPathParser.index().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitIndex in interface PropertyPathVisitor<T>ctx - the parse treepublic T visitKey(@NotNull PropertyPathParser.KeyContext ctx)
PropertyPathParser.key().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitKey in interface PropertyPathVisitor<T>ctx - the parse treepublic T visitAnyIndex(@NotNull PropertyPathParser.AnyIndexContext ctx)
PropertyPathParser.anyIndex().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAnyIndex in interface PropertyPathVisitor<T>ctx - the parse treepublic T visitAnyKey(@NotNull PropertyPathParser.AnyKeyContext ctx)
PropertyPathParser.anyKey().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAnyKey in interface PropertyPathVisitor<T>ctx - the parse treepublic T visitAny(@NotNull PropertyPathParser.AnyContext ctx)
PropertyPathParser.any().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAny in interface PropertyPathVisitor<T>ctx - the parse treeCopyright © 2015. All rights reserved.