- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
JsonBaseListener,JSONEventDrivenImporter.NotifyJsonListener
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 TypeMethodDescriptionvoidEnter a parse tree produced byJsonParser.array().voidEnter a parse tree produced byJsonParser.json().voidEnter a parse tree produced byJsonParser.obj().voidEnter a parse tree produced byJsonParser.pair().voidEnter a parse tree produced byJsonParser.value().voidExit a parse tree produced byJsonParser.array().voidExit a parse tree produced byJsonParser.json().voidExit a parse tree produced byJsonParser.obj().voidExit a parse tree produced byJsonParser.pair().voidExit 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
-