Interface LeafRefPathParserVisitor<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:
LeafRefPathParserBaseVisitor
public interface LeafRefPathParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced byLeafRefPathParser
.
-
-
Method Summary
-
-
-
Method Detail
-
visitPath_arg
T visitPath_arg(LeafRefPathParser.Path_argContext ctx)
Visit a parse tree produced byLeafRefPathParser.path_arg()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAbsolute_path
T visitAbsolute_path(LeafRefPathParser.Absolute_pathContext ctx)
Visit a parse tree produced byLeafRefPathParser.absolute_path()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRelative_path
T visitRelative_path(LeafRefPathParser.Relative_pathContext ctx)
Visit a parse tree produced byLeafRefPathParser.relative_path()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDescendant_path
T visitDescendant_path(LeafRefPathParser.Descendant_pathContext ctx)
Visit a parse tree produced byLeafRefPathParser.descendant_path()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPath_predicate
T visitPath_predicate(LeafRefPathParser.Path_predicateContext ctx)
Visit a parse tree produced byLeafRefPathParser.path_predicate()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPath_equality_expr
T visitPath_equality_expr(LeafRefPathParser.Path_equality_exprContext ctx)
Visit a parse tree produced byLeafRefPathParser.path_equality_expr()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPath_key_expr
T visitPath_key_expr(LeafRefPathParser.Path_key_exprContext ctx)
Visit a parse tree produced byLeafRefPathParser.path_key_expr()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRel_path_keyexpr
T visitRel_path_keyexpr(LeafRefPathParser.Rel_path_keyexprContext ctx)
Visit a parse tree produced byLeafRefPathParser.rel_path_keyexpr()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNode_identifier
T visitNode_identifier(LeafRefPathParser.Node_identifierContext ctx)
Visit a parse tree produced byLeafRefPathParser.node_identifier()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitCurrent_function_invocation
T visitCurrent_function_invocation(LeafRefPathParser.Current_function_invocationContext ctx)
Visit a parse tree produced byLeafRefPathParser.current_function_invocation()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPrefix
T visitPrefix(LeafRefPathParser.PrefixContext ctx)
Visit a parse tree produced byLeafRefPathParser.prefix()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIdentifier
T visitIdentifier(LeafRefPathParser.IdentifierContext ctx)
Visit a parse tree produced byLeafRefPathParser.identifier()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-