Deprecated, for removal: This API element is subject to removal in a future version.
- 3.21.0 - [#18329] - This shaded third party dependency will be
removed without replacement. Please use any other JSON parser,
instead - e.g. Jackson.
A simplified and stoppable SAX-like content handler for stream processing of
JSON text.
- Author:
- FangYidong<fangyidong@yahoo.com.cn>
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
endArray()
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the end of a JSON array.void
endJSON()
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the end of JSON processing.boolean
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the end of a JSON object.boolean
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the end of the value of previous object entry.boolean
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the JSON primitive values: java.lang.String, java.lang.Number, java.lang.Boolean nullboolean
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the beginning of a JSON array.void
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the beginning of JSON processing.boolean
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the beginning of a JSON object.boolean
startObjectEntry
(String key) Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the beginning of a JSON object entry.
-
Method Details
-
startJSON
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the beginning of JSON processing. The parser will invoke this method only once.- Throws:
ParseException
- - JSONParser will stop and throw the same exception to the caller when receiving this exception.IOException
-
endJSON
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the end of JSON processing.- Throws:
ParseException
IOException
-
startObject
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the beginning of a JSON object.- Returns:
- false if the handler wants to stop parsing after return.
- Throws:
ParseException
- - JSONParser will stop and throw the same exception to the caller when receiving this exception.IOException
- See Also:
-
endObject
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the end of a JSON object.- Returns:
- false if the handler wants to stop parsing after return.
- Throws:
ParseException
IOException
- See Also:
-
startObjectEntry
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the beginning of a JSON object entry.- Parameters:
key
- - Key of a JSON object entry.- Returns:
- false if the handler wants to stop parsing after return.
- Throws:
ParseException
IOException
- See Also:
-
endObjectEntry
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the end of the value of previous object entry.- Returns:
- false if the handler wants to stop parsing after return.
- Throws:
ParseException
IOException
- See Also:
-
startArray
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the beginning of a JSON array.- Returns:
- false if the handler wants to stop parsing after return.
- Throws:
ParseException
IOException
- See Also:
-
endArray
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the end of a JSON array.- Returns:
- false if the handler wants to stop parsing after return.
- Throws:
ParseException
IOException
- See Also:
-
primitive
Deprecated, for removal: This API element is subject to removal in a future version.Receive notification of the JSON primitive values: java.lang.String, java.lang.Number, java.lang.Boolean null- Parameters:
value
- - Instance of the following: java.lang.String, java.lang.Number, java.lang.Boolean null- Returns:
- false if the handler wants to stop parsing after return.
- Throws:
ParseException
IOException
-