JsonObject |
JsonObject.clear() |
Removes all the entries in this JSON object.
|
JsonObject |
JsonArray.getJsonObject(int pos) |
Returns the JsonObject at position pos in the array.
|
JsonObject |
JsonObject.getJsonObject(java.lang.String key) |
Returns the JsonObject value with the specified key.
|
JsonObject |
JsonObject.getJsonObject(java.lang.String key,
JsonObject def) |
|
JsonObject |
JsonObject.mergeIn(JsonObject other) |
Merges in another JSON object.
|
JsonObject |
JsonObject.mergeIn(JsonObject other,
int depth) |
Merges in another JSON object.
|
JsonObject |
JsonObject.mergeInDeep(JsonObject other) |
Merges in another JSON object.
|
JsonObject |
JsonParser.parseAsJsonObject(java.lang.String input) |
|
JsonObject |
JsonObject.put(java.lang.String key,
byte[] value) |
Puts a byte[] into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
java.lang.Boolean value) |
Puts a boolean into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
java.lang.CharSequence value) |
Puts an CharSequence into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
java.lang.Double value) |
Puts a double into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
java.lang.Enum value) |
Puts an Enum into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
java.lang.Float value) |
Puts a float into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
java.lang.Integer value) |
Puts an integer into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
java.lang.Long value) |
Puts a long into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
java.lang.Object value) |
Puts an object into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
java.lang.String value) |
Puts a string into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
JsonArray value) |
Puts a JsonArray into the JSON object with the specified key.
|
JsonObject |
JsonObject.put(java.lang.String key,
JsonObject value) |
Puts another JSON object into the JSON object with the specified key.
|
JsonObject |
JsonObject.putNull(java.lang.String key) |
Puts a null value into the JSON object with the specified key.
|