JsonArray |
JsonArray.add(byte[] value) |
Adds a binary value to the JSON array.
|
JsonArray |
JsonArray.add(java.lang.Boolean value) |
Adds a boolean to the JSON array.
|
JsonArray |
JsonArray.add(java.lang.CharSequence value) |
Adds a CharSequence to the JSON array.
|
JsonArray |
JsonArray.add(java.lang.Double value) |
Adds a double to the JSON array.
|
JsonArray |
JsonArray.add(java.lang.Enum value) |
Adds an enum to the JSON array.
|
JsonArray |
JsonArray.add(java.lang.Float value) |
Adds a float to the JSON array.
|
JsonArray |
JsonArray.add(java.lang.Integer value) |
Adds an integer to the JSON array.
|
JsonArray |
JsonArray.add(java.lang.Long value) |
Adds a long to the JSON array.
|
JsonArray |
JsonArray.add(java.lang.Object value) |
Adds an object to the JSON array.
|
JsonArray |
JsonArray.add(java.lang.String value) |
Adds a string to the JSON array.
|
JsonArray |
JsonArray.add(JsonArray value) |
Adds another JSON array to the JSON array.
|
JsonArray |
JsonArray.add(JsonObject value) |
Adds a JSON object to the JSON array.
|
JsonArray |
JsonArray.addAll(JsonArray array) |
Appends all of the elements in the specified array to the end of this JSON array.
|
JsonArray |
JsonArray.addNull() |
Adds a null value to the JSON array.
|
JsonArray |
JsonArray.clear() |
Removes all entries from the JSON array.
|
JsonArray |
JsonArray.getJsonArray(int pos) |
Returns the JsonArray at position pos in the array.
|
JsonArray |
JsonObject.getJsonArray(java.lang.String key) |
Returns the JsonArray value with the specified key
|
JsonArray |
JsonObject.getJsonArray(java.lang.String key,
JsonArray def) |
|
JsonArray |
JsonParser.parseAsJsonArray(java.lang.String input) |
Parses input JSON to JsonArray, special case of parsing.
|