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 ofPathExpressionParserListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description PathExpressionParserBaseListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidenterArray_index(PathExpressionParser.Array_indexContext ctx)Enter a parse tree produced byPathExpressionParser.array_index().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)voidenterId(PathExpressionParser.IdContext ctx)Enter a parse tree produced byPathExpressionParser.id().voidenterPath(PathExpressionParser.PathContext ctx)Enter a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().voidexitArray_index(PathExpressionParser.Array_indexContext ctx)Exit a parse tree produced byPathExpressionParser.array_index().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)voidexitId(PathExpressionParser.IdContext ctx)Exit a parse tree produced byPathExpressionParser.id().voidexitPath(PathExpressionParser.PathContext ctx)Exit 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)
-
-
-
Method Detail
-
enterPath
public void enterPath(PathExpressionParser.PathContext ctx)
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
public void exitPath(PathExpressionParser.PathContext ctx)
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
public void enterId(PathExpressionParser.IdContext ctx)
Enter a parse tree produced byPathExpressionParser.id().The default implementation does nothing.
- Specified by:
enterIdin interfacePathExpressionParserListener- Parameters:
ctx- the parse tree
-
exitId
public void exitId(PathExpressionParser.IdContext ctx)
Exit a parse tree produced byPathExpressionParser.id().The default implementation does nothing.
- Specified by:
exitIdin interfacePathExpressionParserListener- Parameters:
ctx- the parse tree
-
enterArray_index
public void enterArray_index(PathExpressionParser.Array_indexContext ctx)
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
public void exitArray_index(PathExpressionParser.Array_indexContext ctx)
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
-
-