- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
JsonBaseListener
interface JsonListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
JsonParser
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced byJsonParser.array()
.void
Enter a parse tree produced byJsonParser.json()
.void
Enter a parse tree produced byJsonParser.obj()
.void
Enter a parse tree produced byJsonParser.pair()
.void
Enter a parse tree produced byJsonParser.value()
.void
Exit a parse tree produced byJsonParser.array()
.void
Exit a parse tree produced byJsonParser.json()
.void
Exit a parse tree produced byJsonParser.obj()
.void
Exit a parse tree produced byJsonParser.pair()
.void
Exit a parse tree produced byJsonParser.value()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterJson
Enter a parse tree produced byJsonParser.json()
.- Parameters:
ctx
- the parse tree
-
exitJson
Exit a parse tree produced byJsonParser.json()
.- Parameters:
ctx
- the parse tree
-
enterObj
Enter a parse tree produced byJsonParser.obj()
.- Parameters:
ctx
- the parse tree
-
exitObj
Exit a parse tree produced byJsonParser.obj()
.- Parameters:
ctx
- the parse tree
-
enterPair
Enter a parse tree produced byJsonParser.pair()
.- Parameters:
ctx
- the parse tree
-
exitPair
Exit a parse tree produced byJsonParser.pair()
.- Parameters:
ctx
- the parse tree
-
enterArray
Enter a parse tree produced byJsonParser.array()
.- Parameters:
ctx
- the parse tree
-
exitArray
Exit a parse tree produced byJsonParser.array()
.- Parameters:
ctx
- the parse tree
-
enterValue
Enter a parse tree produced byJsonParser.value()
.- Parameters:
ctx
- the parse tree
-
exitValue
Exit a parse tree produced byJsonParser.value()
.- Parameters:
ctx
- the parse tree
-