| Package | Description |
|---|---|
| com.dpslink.base.util.json |
Product-neutral classes for processing JSON data (pre
JSON.org library). |
| Modifier and Type | Class and Description |
|---|---|
class |
JSONArray
Represents a JSON array value.
|
class |
JSONBoolean
Represents a JSON boolean value.
|
class |
JSONNumber
Represents a JSON numeric value.
|
class |
JSONObject
Represents a JSON object value.
|
class |
JSONString
Represents a JSON string value.
|
| Modifier and Type | Field and Description |
|---|---|
(package private) java.util.ArrayList<JSONValue> |
JSONArray.ivArray
The internal array list to hold the JSON values.
|
protected java.util.LinkedHashMap<java.lang.String,JSONValue> |
JSONObject.ivPairs
The internal map list to hold the JSON name/value pairs.
|
| Modifier and Type | Method and Description |
|---|---|
void |
JSONArray.add(JSONValue val)
Adds a value to the array.
|
void |
JSONObject.add(java.lang.String name,
JSONValue value)
Adds a name/value pair to the object.
|
void |
JSONObject.addNameValuePair(java.lang.String name,
JSONValue value)
Adds a name/value pair to the object.
|