Package | Description |
---|---|
com.ibm.json.java |
Modifier and Type | Class and Description |
---|---|
class |
OrderedJSONObject
Extension of the basic JSONObject.
|
Modifier and Type | Method and Description |
---|---|
static JSONObject |
JSONObject.parse(java.io.InputStream is)
Convert a stream of JSON text into object form.
|
static JSONObject |
OrderedJSONObject.parse(java.io.InputStream is)
Convert a stream of JSON text into object form.
|
static JSONObject |
JSONObject.parse(java.io.Reader reader)
Convert a stream (in reader form) of JSON text into object form.
|
static JSONObject |
OrderedJSONObject.parse(java.io.Reader reader)
Convert a stream (in reader form) of JSON text into object form.
|
static JSONObject |
JSONObject.parse(java.lang.String str)
Convert a String of JSON text into object form.
|
static JSONObject |
OrderedJSONObject.parse(java.lang.String str)
Convert a String of JSON text into object form.
|