Package | Description |
---|---|
com.espertech.esper.common.client.json.minimaljson |
JSON event object interface and event sender.
|
Modifier and Type | Method and Description |
---|---|
JsonObject |
JsonObject.add(java.lang.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(java.lang.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(java.lang.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(java.lang.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(java.lang.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.add(java.lang.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(java.lang.String name,
java.lang.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 |
JsonValue.asObject()
Returns this JSON value as
JsonObject , assuming that this value represents a JSON
object. |
JsonObject |
JsonObject.asObject() |
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(java.io.Reader reader)
Deprecated.
Use
Json.parse(Reader) .asObject() instead |
static JsonObject |
JsonObject.readFrom(java.lang.String string)
Deprecated.
Use
Json.parse(String) .asObject() instead |
JsonObject |
JsonObject.remove(java.lang.String name)
Removes a member with the specified name from this object.
|
JsonObject |
JsonObject.set(java.lang.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(java.lang.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(java.lang.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(java.lang.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(java.lang.String name,
JsonValue value)
Sets the value of the member with the specified name to the specified JSON value.
|
JsonObject |
JsonObject.set(java.lang.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(java.lang.String name,
java.lang.String value)
Sets the value of the member with the specified name to the JSON representation of the
specified string.
|
static JsonObject |
JsonObject.unmodifiableObject(JsonObject object)
Returns an unmodifiable JsonObject for the specified one.
|
Modifier and Type | Method and Description |
---|---|
JsonObject |
JsonObject.merge(JsonObject object)
Copies all members of the specified object into this object.
|
static JsonObject |
JsonObject.unmodifiableObject(JsonObject object)
Returns an unmodifiable JsonObject for the specified one.
|
Constructor and Description |
---|
JsonObject(JsonObject object)
Creates a new JsonObject, initialized with the contents of the specified JSON object.
|