boolean |
ContentHandler.endArray() |
Receive notification of the end of a JSON array.
|
boolean |
SimpleContentHandler.endArray() |
|
void |
ContentHandler.endJSON() |
Receive notification of the end of JSON processing.
|
void |
SimpleContentHandler.endJSON() |
|
boolean |
ContentHandler.endObject() |
Receive notification of the end of a JSON object.
|
boolean |
SimpleContentHandler.endObject() |
|
boolean |
ContentHandler.endObjectEntry() |
Receive notification of the end of the value of previous object entry.
|
boolean |
SimpleContentHandler.endObjectEntry() |
|
void |
JSONParser.parse(Reader in,
ContentHandler contentHandler) |
|
void |
JSONParser.parse(Reader in,
ContentHandler contentHandler,
boolean isResume) |
Stream processing of JSON text.
|
void |
JSONParser.parse(String s,
ContentHandler contentHandler) |
|
void |
JSONParser.parse(String s,
ContentHandler contentHandler,
boolean isResume) |
|
boolean |
ContentHandler.primitive(Object value) |
Receive notification of the JSON primitive values:
java.lang.String,
java.lang.Number,
java.lang.Boolean
null
|
boolean |
SimpleContentHandler.primitive(Object value) |
|
boolean |
ContentHandler.startArray() |
Receive notification of the beginning of a JSON array.
|
boolean |
SimpleContentHandler.startArray() |
|
void |
ContentHandler.startJSON() |
Receive notification of the beginning of JSON processing.
|
void |
SimpleContentHandler.startJSON() |
|
boolean |
ContentHandler.startObject() |
Receive notification of the beginning of a JSON object.
|
boolean |
SimpleContentHandler.startObject() |
|
boolean |
ContentHandler.startObjectEntry(String key) |
Receive notification of the beginning of a JSON object entry.
|
boolean |
SimpleContentHandler.startObjectEntry(String key) |
|