JsonObject |
JsonObject.add(String name,
boolean value) |
Appends a new member to the end of this object, with the specified name and the JSON
representation of the specified boolean value.
|
JsonObject |
JsonObject.add(String name,
double value) |
Appends a new member to the end of this object, with the specified name and the JSON
representation of the specified double value.
|
JsonObject |
JsonObject.add(String name,
float value) |
Appends a new member to the end of this object, with the specified name and the JSON
representation of the specified float value.
|
JsonObject |
JsonObject.add(String name,
int value) |
Appends a new member to the end of this object, with the specified name and the JSON
representation of the specified int value.
|
JsonObject |
JsonObject.add(String name,
long value) |
Appends a new member to the end of this object, with the specified name and the JSON
representation of the specified long value.
|
JsonObject |
JsonObject.add(String name,
String value) |
Appends a new member to the end of this object, with the specified name and the JSON
representation of the specified string.
|
JsonObject |
JsonObject.add(String name,
JsonValue value) |
Appends a new member to the end of this object, with the specified name and the specified JSON
value.
|
JsonObject |
JsonObject.asObject() |
|
JsonObject |
JsonValue.asObject() |
Returns this JSON value as JsonObject, assuming that this value represents a JSON
object.
|
JsonObject |
JsonObject.merge(JsonObject object) |
Copies all members of the specified object into this object.
|
static JsonObject |
Json.object() |
Creates a new empty JsonObject.
|
static JsonObject |
JsonObject.readFrom(Reader reader) |
Deprecated.
|
static JsonObject |
JsonObject.readFrom(String string) |
Deprecated.
|
JsonObject |
JsonObject.remove(String name) |
Removes a member with the specified name from this object.
|
JsonObject |
JsonObject.set(String name,
boolean value) |
Sets the value of the member with the specified name to the JSON representation of the
specified boolean value.
|
JsonObject |
JsonObject.set(String name,
double value) |
Sets the value of the member with the specified name to the JSON representation of the
specified double value.
|
JsonObject |
JsonObject.set(String name,
float value) |
Sets the value of the member with the specified name to the JSON representation of the
specified float value.
|
JsonObject |
JsonObject.set(String name,
int value) |
Sets the value of the member with the specified name to the JSON representation of the
specified int value.
|
JsonObject |
JsonObject.set(String name,
long value) |
Sets the value of the member with the specified name to the JSON representation of the
specified long value.
|
JsonObject |
JsonObject.set(String name,
String value) |
Sets the value of the member with the specified name to the JSON representation of the
specified string.
|
JsonObject |
JsonObject.set(String name,
JsonValue value) |
Sets the value of the member with the specified name to the specified JSON value.
|
static JsonObject |
JsonObject.unmodifiableObject(JsonObject object) |
Returns an unmodifiable JsonObject for the specified one.
|
Json.parse(Reader).asObject()instead