Class PathExpressionParserBaseListener
java.lang.Object
com.api.jsonata4java.expressions.path.generated.PathExpressionParserBaseListener
- All Implemented Interfaces:
PathExpressionParserListener,org.antlr.v4.runtime.tree.ParseTreeListener
public class PathExpressionParserBaseListener
extends Object
implements PathExpressionParserListener
This class provides an empty implementation of
PathExpressionParserListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidEnter a parse tree produced byPathExpressionParser.array_index().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidEnter a parse tree produced byPathExpressionParser.id().voidEnter a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().voidExit a parse tree produced byPathExpressionParser.array_index().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidExit a parse tree produced byPathExpressionParser.id().voidExit a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
PathExpressionParserBaseListener
public PathExpressionParserBaseListener()
-
-
Method Details
-
enterPath
Enter a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().The default implementation does nothing.
- Specified by:
enterPathin interfacePathExpressionParserListener- Parameters:
ctx- the parse tree
-
exitPath
Exit a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().The default implementation does nothing.
- Specified by:
exitPathin interfacePathExpressionParserListener- Parameters:
ctx- the parse tree
-
enterId
Enter a parse tree produced byPathExpressionParser.id().The default implementation does nothing.
- Specified by:
enterIdin interfacePathExpressionParserListener- Parameters:
ctx- the parse tree
-
exitId
Exit a parse tree produced byPathExpressionParser.id().The default implementation does nothing.
- Specified by:
exitIdin interfacePathExpressionParserListener- Parameters:
ctx- the parse tree
-
enterArray_index
Enter a parse tree produced byPathExpressionParser.array_index().The default implementation does nothing.
- Specified by:
enterArray_indexin interfacePathExpressionParserListener- Parameters:
ctx- the parse tree
-
exitArray_index
Exit a parse tree produced byPathExpressionParser.array_index().The default implementation does nothing.
- Specified by:
exitArray_indexin interfacePathExpressionParserListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-