JSONArray |
JSONArray.getJSONArray(int index) |
Get the JSONArray associated with an index.
|
JSONArray |
JSONObject.getJSONArray(java.lang.String key) |
Get the JSONArray value associated with a key.
|
JSONArray |
JSONObject.names() |
Produce a JSONArray containing the names of the elements of this
JSONObject.
|
JSONArray |
JSONArray.optJSONArray(int index) |
Get the optional JSONArray associated with an index.
|
JSONArray |
JSONObject.optJSONArray(java.lang.String key) |
Get an optional JSONArray associated with a key.
|
JSONArray |
JSONArray.put(boolean value) |
Append a boolean value.
|
JSONArray |
JSONArray.put(double value) |
Append a double value.
|
JSONArray |
JSONArray.put(float value) |
Append a float value.
|
JSONArray |
JSONArray.put(int value) |
Append an int value.
|
JSONArray |
JSONArray.put(int index,
boolean value) |
Put or replace a boolean value in the JSONArray.
|
JSONArray |
JSONArray.put(int index,
double value) |
Put or replace a double value.
|
JSONArray |
JSONArray.put(int index,
float value) |
Put or replace a float value.
|
JSONArray |
JSONArray.put(int index,
int value) |
Put or replace an int value.
|
JSONArray |
JSONArray.put(int index,
long value) |
Put or replace a long value.
|
JSONArray |
JSONArray.put(int index,
java.lang.Object value) |
Put or replace an object value in the JSONArray.
|
JSONArray |
JSONArray.put(int index,
java.util.Collection<?> value) |
Put a value in the JSONArray, where the value will be a JSONArray which
is produced from a Collection.
|
JSONArray |
JSONArray.put(int index,
java.util.Map<?,?> value) |
Put a value in the JSONArray, where the value will be a JSONObject that
is produced from a Map.
|
JSONArray |
JSONArray.put(long value) |
Append an long value.
|
JSONArray |
JSONArray.put(java.lang.Object value) |
Append an object value.
|
JSONArray |
JSONArray.put(java.util.Collection<?> value) |
Put a value in the JSONArray, where the value will be a JSONArray which
is produced from a Collection.
|
JSONArray |
JSONArray.put(java.util.Map<?,?> value) |
Put a value in the JSONArray, where the value will be a JSONObject which
is produced from a Map.
|
JSONArray |
JSONArray.putAll(JSONArray array) |
Put a JSONArray's elements in to the JSONArray.
|
JSONArray |
JSONArray.putAll(java.lang.Iterable<?> iter) |
Put an Iterable's elements in to the JSONArray.
|
JSONArray |
JSONArray.putAll(java.lang.Object array) |
Put an array's elements in to the JSONArray.
|
JSONArray |
JSONArray.putAll(java.util.Collection<?> collection) |
Put a collection's elements in to the JSONArray.
|
static JSONArray |
CDL.rowToJSONArray(JSONTokener x) |
Produce a JSONArray of strings from a row of comma delimited values.
|
static JSONArray |
CDL.toJSONArray(JSONArray names,
JSONTokener x) |
Produce a JSONArray of JSONObjects from a comma delimited text string
using a supplied JSONArray as the source of element names.
|
static JSONArray |
CDL.toJSONArray(JSONArray names,
java.lang.String string) |
Produce a JSONArray of JSONObjects from a comma delimited text string
using a supplied JSONArray as the source of element names.
|
static JSONArray |
CDL.toJSONArray(JSONTokener x) |
Produce a JSONArray of JSONObjects from a comma delimited text string,
using the first row as a source of names.
|
static JSONArray |
CDL.toJSONArray(java.lang.String string) |
Produce a JSONArray of JSONObjects from a comma delimited text string,
using the first row as a source of names.
|
static JSONArray |
JSONML.toJSONArray(XMLTokener x) |
Convert a well-formed (but not necessarily valid) XML string into a
JSONArray using the JsonML transform.
|
static JSONArray |
JSONML.toJSONArray(XMLTokener x,
boolean keepStrings) |
Convert a well-formed (but not necessarily valid) XML string into a
JSONArray using the JsonML transform.
|
static JSONArray |
JSONML.toJSONArray(java.lang.String string) |
Convert a well-formed (but not necessarily valid) XML string into a
JSONArray using the JsonML transform.
|
static JSONArray |
JSONML.toJSONArray(java.lang.String string,
boolean keepStrings) |
Convert a well-formed (but not necessarily valid) XML string into a
JSONArray using the JsonML transform.
|
JSONArray |
JSONObject.toJSONArray(JSONArray names) |
Produce a JSONArray containing the values of the members of this
JSONObject.
|