Get the JSONArray associated with an index.
Get the JSONArray value associated with a key.
Produce a JSONArray containing the names of the elements of this
JSONObject.
Get the optional JSONArray associated with an index.
Get an optional JSONArray associated with a key.
JSONArray.put(boolean value)
JSONArray.put(double value)
JSONArray.put(float value)
JSONArray.put(int index,
boolean value)
Put or replace a boolean value in the JSONArray.
JSONArray.put(int index,
double value)
Put or replace a double value.
JSONArray.put(int index,
float value)
Put or replace a float value.
JSONArray.put(int index,
int value)
Put or replace an int value.
JSONArray.put(int index,
long value)
Put or replace a long value.
Put or replace an object value in the JSONArray.
Put a value in the JSONArray, where the value will be a JSONArray which
is produced from a Collection.
JSONArray.put(int index,
Map<?,?> value)
Put a value in the JSONArray, where the value will be a JSONObject that
is produced from a Map.
JSONArray.put(long value)
Put a value in the JSONArray, where the value will be a JSONArray which
is produced from a Collection.
Put a value in the JSONArray, where the value will be a JSONObject which
is produced from a Map.
Put an Iterable's elements in to the JSONArray.
Put an array's elements in to the JSONArray.
Put a collection's elements in to the JSONArray.
Put a JSONArray's elements in to the JSONArray.
Produce a JSONArray of strings from a row of comma delimited values.
Produce a JSONArray of JSONObjects from a comma delimited text string,
using the first row as a source of names.
Produce a JSONArray of JSONObjects from a comma delimited text string
using a supplied JSONArray as the source of element names.
Produce a JSONArray of JSONObjects from a comma delimited text string
using a supplied JSONArray as the source of element names.
Produce a JSONArray of JSONObjects from a comma delimited text string,
using the first row as a source of names.
Convert a well-formed (but not necessarily valid) XML string into a
JSONArray using the JsonML transform.
Convert a well-formed (but not necessarily valid) XML string into a
JSONArray using the JsonML transform.
Convert a well-formed (but not necessarily valid) XML string into a
JSONArray using the JsonML transform.
Convert a well-formed (but not necessarily valid) XML string into a
JSONArray using the JsonML transform.
Produce a JSONArray containing the values of the members of this
JSONObject.
Parse XML values and store them in a JSONArray.
Put a JSONArray's elements in to the JSONArray.
Produce a JSONObject from a row of comma delimited text, using a
parallel JSONArray of strings to provides the names of the elements.
Produce a comma delimited text row from a JSONArray.
Produce a JSONArray of JSONObjects from a comma delimited text string
using a supplied JSONArray as the source of element names.
Produce a JSONArray of JSONObjects from a comma delimited text string
using a supplied JSONArray as the source of element names.
Produce a JSONArray containing the values of the members of this
JSONObject.
Produce a JSONObject by combining a JSONArray of names with the values of
this JSONArray.
Produce a comma delimited text from a JSONArray of JSONObjects.
Produce a comma delimited text from a JSONArray of JSONObjects using
a provided list of names.
Reverse the JSONML transformation, making an XML text from a JSONArray.