ContentHandlerCompressor, ContentHandlerDumypublic interface ContentHandler
ContentHandler| Modifier and Type | Method | Description |
|---|---|---|
boolean |
endArray() |
Receive notification of the end of a JSON array.
|
void |
endJSON() |
Receive notification of the end of JSON processing.
|
boolean |
endObject() |
Receive notification of the end of a JSON object.
|
boolean |
endObjectEntry() |
Receive notification of the end of the value of previous object entry.
|
boolean |
primitive(Object value) |
Receive notification of the JSON primitive values: java.lang.String,
java.lang.Number, java.lang.Boolean null
|
boolean |
startArray() |
Receive notification of the beginning of a JSON array.
|
void |
startJSON() |
Receive notification of the beginning of JSON processing.
|
boolean |
startObject() |
Receive notification of the beginning of a JSON object.
|
boolean |
startObjectEntry(String key) |
Receive notification of the beginning of a JSON object entry.
|
void startJSON()
throws ParseException,
IOException
ParseException - - JSONParser will stop and throw the same exception to the
caller when receiving this exception.IOExceptionvoid endJSON()
throws ParseException,
IOException
ParseExceptionIOExceptionboolean startObject()
throws ParseException,
IOException
ParseException - - JSONParser will stop and throw the same exception to the
caller when receiving this exception.IOExceptionendJSON()boolean endObject()
throws ParseException,
IOException
ParseExceptionIOExceptionstartObject()boolean startObjectEntry(String key) throws ParseException, IOException
key - - Key of a JSON object entry.ParseExceptionIOExceptionendObjectEntry()boolean endObjectEntry()
throws ParseException,
IOException
ParseExceptionIOExceptionstartObjectEntry(java.lang.String)boolean startArray()
throws ParseException,
IOException
ParseExceptionIOExceptionendArray()boolean endArray()
throws ParseException,
IOException
ParseExceptionIOExceptionstartArray()boolean primitive(Object value) throws ParseException, IOException
value - - Instance of the following: java.lang.String,
java.lang.Number, java.lang.Boolean nullParseExceptionIOException