Package org.reploop.parser.json.base
Interface JsonBaseListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
JsonBaseBaseListener
public interface JsonBaseListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byJsonBaseParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenterArr(JsonBaseParser.ArrContext ctx)Enter a parse tree produced byJsonBaseParser.arr().voidenterArrValue(JsonBaseParser.ArrValueContext ctx)Enter a parse tree produced by thearrValuelabeled alternative inJsonBaseParser.value().voidenterFalseValue(JsonBaseParser.FalseValueContext ctx)Enter a parse tree produced by thefalseValuelabeled alternative inJsonBaseParser.value().voidenterJson(JsonBaseParser.JsonContext ctx)Enter a parse tree produced byJsonBaseParser.json().voidenterNullValue(JsonBaseParser.NullValueContext ctx)Enter a parse tree produced by thenullValuelabeled alternative inJsonBaseParser.value().voidenterNumberValue(JsonBaseParser.NumberValueContext ctx)Enter a parse tree produced by thenumberValuelabeled alternative inJsonBaseParser.value().voidenterObj(JsonBaseParser.ObjContext ctx)Enter a parse tree produced byJsonBaseParser.obj().voidenterObjValue(JsonBaseParser.ObjValueContext ctx)Enter a parse tree produced by theobjValuelabeled alternative inJsonBaseParser.value().voidenterPair(JsonBaseParser.PairContext ctx)Enter a parse tree produced byJsonBaseParser.pair().voidenterStringValue(JsonBaseParser.StringValueContext ctx)Enter a parse tree produced by thestringValuelabeled alternative inJsonBaseParser.value().voidenterTrueValue(JsonBaseParser.TrueValueContext ctx)Enter a parse tree produced by thetrueValuelabeled alternative inJsonBaseParser.value().voidexitArr(JsonBaseParser.ArrContext ctx)Exit a parse tree produced byJsonBaseParser.arr().voidexitArrValue(JsonBaseParser.ArrValueContext ctx)Exit a parse tree produced by thearrValuelabeled alternative inJsonBaseParser.value().voidexitFalseValue(JsonBaseParser.FalseValueContext ctx)Exit a parse tree produced by thefalseValuelabeled alternative inJsonBaseParser.value().voidexitJson(JsonBaseParser.JsonContext ctx)Exit a parse tree produced byJsonBaseParser.json().voidexitNullValue(JsonBaseParser.NullValueContext ctx)Exit a parse tree produced by thenullValuelabeled alternative inJsonBaseParser.value().voidexitNumberValue(JsonBaseParser.NumberValueContext ctx)Exit a parse tree produced by thenumberValuelabeled alternative inJsonBaseParser.value().voidexitObj(JsonBaseParser.ObjContext ctx)Exit a parse tree produced byJsonBaseParser.obj().voidexitObjValue(JsonBaseParser.ObjValueContext ctx)Exit a parse tree produced by theobjValuelabeled alternative inJsonBaseParser.value().voidexitPair(JsonBaseParser.PairContext ctx)Exit a parse tree produced byJsonBaseParser.pair().voidexitStringValue(JsonBaseParser.StringValueContext ctx)Exit a parse tree produced by thestringValuelabeled alternative inJsonBaseParser.value().voidexitTrueValue(JsonBaseParser.TrueValueContext ctx)Exit a parse tree produced by thetrueValuelabeled alternative inJsonBaseParser.value().
-
-
-
Method Detail
-
enterJson
void enterJson(JsonBaseParser.JsonContext ctx)
Enter a parse tree produced byJsonBaseParser.json().- Parameters:
ctx- the parse tree
-
exitJson
void exitJson(JsonBaseParser.JsonContext ctx)
Exit a parse tree produced byJsonBaseParser.json().- Parameters:
ctx- the parse tree
-
enterObj
void enterObj(JsonBaseParser.ObjContext ctx)
Enter a parse tree produced byJsonBaseParser.obj().- Parameters:
ctx- the parse tree
-
exitObj
void exitObj(JsonBaseParser.ObjContext ctx)
Exit a parse tree produced byJsonBaseParser.obj().- Parameters:
ctx- the parse tree
-
enterPair
void enterPair(JsonBaseParser.PairContext ctx)
Enter a parse tree produced byJsonBaseParser.pair().- Parameters:
ctx- the parse tree
-
exitPair
void exitPair(JsonBaseParser.PairContext ctx)
Exit a parse tree produced byJsonBaseParser.pair().- Parameters:
ctx- the parse tree
-
enterArr
void enterArr(JsonBaseParser.ArrContext ctx)
Enter a parse tree produced byJsonBaseParser.arr().- Parameters:
ctx- the parse tree
-
exitArr
void exitArr(JsonBaseParser.ArrContext ctx)
Exit a parse tree produced byJsonBaseParser.arr().- Parameters:
ctx- the parse tree
-
enterStringValue
void enterStringValue(JsonBaseParser.StringValueContext ctx)
Enter a parse tree produced by thestringValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
exitStringValue
void exitStringValue(JsonBaseParser.StringValueContext ctx)
Exit a parse tree produced by thestringValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
enterNumberValue
void enterNumberValue(JsonBaseParser.NumberValueContext ctx)
Enter a parse tree produced by thenumberValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
exitNumberValue
void exitNumberValue(JsonBaseParser.NumberValueContext ctx)
Exit a parse tree produced by thenumberValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
enterObjValue
void enterObjValue(JsonBaseParser.ObjValueContext ctx)
Enter a parse tree produced by theobjValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
exitObjValue
void exitObjValue(JsonBaseParser.ObjValueContext ctx)
Exit a parse tree produced by theobjValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
enterArrValue
void enterArrValue(JsonBaseParser.ArrValueContext ctx)
Enter a parse tree produced by thearrValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
exitArrValue
void exitArrValue(JsonBaseParser.ArrValueContext ctx)
Exit a parse tree produced by thearrValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
enterTrueValue
void enterTrueValue(JsonBaseParser.TrueValueContext ctx)
Enter a parse tree produced by thetrueValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
exitTrueValue
void exitTrueValue(JsonBaseParser.TrueValueContext ctx)
Exit a parse tree produced by thetrueValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
enterFalseValue
void enterFalseValue(JsonBaseParser.FalseValueContext ctx)
Enter a parse tree produced by thefalseValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
exitFalseValue
void exitFalseValue(JsonBaseParser.FalseValueContext ctx)
Exit a parse tree produced by thefalseValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
enterNullValue
void enterNullValue(JsonBaseParser.NullValueContext ctx)
Enter a parse tree produced by thenullValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
exitNullValue
void exitNullValue(JsonBaseParser.NullValueContext ctx)
Exit a parse tree produced by thenullValuelabeled alternative inJsonBaseParser.value().- Parameters:
ctx- the parse tree
-
-