@Deprecated public interface ContentHandler
JSONParser.parse(java.io.Reader, ContentHandler, boolean)
Modifier and Type | Method and Description |
---|---|
boolean |
endArray()
Deprecated.
Receive notification of the end of a JSON array.
|
void |
endJSON()
Deprecated.
Receive notification of the end of JSON processing.
|
boolean |
endObject()
Deprecated.
Receive notification of the end of a JSON object.
|
boolean |
endObjectEntry()
Deprecated.
Receive notification of the end of the value of previous object entry.
|
boolean |
primitive(Object value)
Deprecated.
Receive notification of the JSON primitive values:
java.lang.String,
java.lang.Number,
java.lang.Boolean
null
|
boolean |
startArray()
Deprecated.
Receive notification of the beginning of a JSON array.
|
void |
startJSON()
Deprecated.
Receive notification of the beginning of JSON processing.
|
boolean |
startObject()
Deprecated.
Receive notification of the beginning of a JSON object.
|
boolean |
startObjectEntry(String key)
Deprecated.
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.IOException
- description omitted.void endJSON() throws ParseException, IOException
ParseException
- description omitted.IOException
- description omitted.boolean startObject() throws ParseException, IOException
ParseException
- - JSONParser will stop and throw the same exception to the caller when receiving this exception.IOException
- description omitted.endJSON()
boolean endObject() throws ParseException, IOException
ParseException
- description omitted.IOException
- description omitted.startObject()
boolean startObjectEntry(String key) throws ParseException, IOException
key
- - Key of a JSON object entry.ParseException
- description omitted.IOException
- description omitted.endObjectEntry()
boolean endObjectEntry() throws ParseException, IOException
ParseException
- description omitted.IOException
- description omitted.startObjectEntry(java.lang.String)
boolean startArray() throws ParseException, IOException
ParseException
- description omitted.IOException
- description omitted.endArray()
boolean endArray() throws ParseException, IOException
ParseException
- description omitted.IOException
- description omitted.startArray()
boolean primitive(Object value) throws ParseException, IOException
value
- - Instance of the following:
java.lang.String,
java.lang.Number,
java.lang.Boolean
nullParseException
- description omitted.IOException
- description omitted.Copyright © 2017. All rights reserved.