Package | Description |
---|---|
com.ibm.json.java |
Modifier and Type | Class and Description |
---|---|
class |
JSONArray
Extension of ArrayList that only allows values which are JSON-able.
|
class |
JSONObject
Models a JSON Object.
|
class |
OrderedJSONObject
Extension of the basic JSONObject.
|
Modifier and Type | Method and Description |
---|---|
static JSONArtifact |
JSON.parse(java.io.InputStream is)
Parse an InputStream of JSON text into a JSONArtifact.
|
static JSONArtifact |
JSON.parse(java.io.InputStream is,
boolean order)
Parse a InputStream of JSON text into a JSONArtifact.
|
static JSONArtifact |
JSON.parse(java.io.Reader reader)
Parse a Reader of JSON text into a JSONArtifact.
|
static JSONArtifact |
JSON.parse(java.io.Reader reader,
boolean order)
Parse a Reader of JSON text into a JSONArtifact.
|
static JSONArtifact |
JSON.parse(java.lang.String str)
Parse a string of JSON text into a JSONArtifact.
|
static JSONArtifact |
JSON.parse(java.lang.String str,
boolean order)
Parse a string of JSON text into a JSONArtifact.
|