JSONArray |
JSONArray.addArray() |
|
static JSONArray |
JSONArray.copyOf(Collection collection) |
Returns an JSONArray containing the elements of the given Collection, in its iteration order.
|
JSONArray |
JSONArray.fluentAdd(Object element) |
Chained addition of elements
|
JSONArray |
JSONArray.fluentAddAll(Collection<?> c) |
|
JSONArray |
JSONArray.fluentClear() |
|
JSONArray |
JSONArray.fluentRemove(int index) |
|
JSONArray |
JSONArray.fluentRemove(Object o) |
|
JSONArray |
JSONArray.fluentRemoveAll(Collection<?> c) |
|
JSONArray |
JSONArray.fluentSet(int index,
Object element) |
|
static JSONArray |
JSONArray.from(Object obj) |
|
static JSONArray |
JSONArray.from(Object obj,
JSONWriter.Feature... writeFeatures) |
|
JSONArray |
JSONArray.getJSONArray(int index) |
|
JSONArray |
JSONObject.getJSONArray(String key) |
|
static JSONArray |
JSONArray.of(Object item) |
|
static JSONArray |
JSONArray.of(Object... items) |
|
static JSONArray |
JSONArray.of(Object first,
Object second) |
|
static JSONArray |
JSONArray.of(Object first,
Object second,
Object third) |
|
static JSONArray |
JSONArray.parse(String text,
JSONReader.Feature... features) |
|
static JSONArray |
JSON.parseArray(byte[] bytes) |
|
static JSONArray |
JSON.parseArray(byte[] bytes,
int offset,
int length,
Charset charset) |
|
static JSONArray |
JSON.parseArray(char[] chars) |
|
static JSONArray |
JSON.parseArray(InputStream in,
JSONReader.Feature... features) |
|
static JSONArray |
JSON.parseArray(InputStream in,
Charset charset,
JSONReader.Context context) |
|
static JSONArray |
JSON.parseArray(String text) |
|
static JSONArray |
JSON.parseArray(String text,
JSONReader.Feature... features) |
|
static JSONArray |
JSON.parseArray(URL url,
JSONReader.Feature... features) |
Parses the json stream of the url as a JSONArray.
|
static JSONArray |
JSONArray.parseArray(String text,
JSONReader.Feature... features) |
|
static JSONArray |
JSONB.parseArray(byte[] jsonbBytes) |
|
static JSONArray |
JSONB.parseArray(InputStream in,
JSONReader.Context context) |
|
JSONArray |
JSONObject.putArray(String name) |
|
JSONArray |
JSONReader.readJSONArray() |
|