Uses of Class
com.espertech.esper.common.client.json.minimaljson.JsonValue
Packages that use JsonValue
Package
Description
JSON event object interface and event sender.
-
Uses of JsonValue in com.espertech.esper.common.client.json.minimaljson
Subclasses of JsonValue in com.espertech.esper.common.client.json.minimaljsonModifier and TypeClassDescriptionclass
Represents a JSON array, an ordered collection of JSON values.class
JSON number.class
Represents a JSON object, a set of name/value pairs, where the names are strings and the values are JSON values.class
Fields in com.espertech.esper.common.client.json.minimaljson declared as JsonValueModifier and TypeFieldDescriptionstatic final JsonValue
Json.FALSE
Represents the JSON literalfalse
.static final JsonValue
JsonValue.FALSE
Deprecated.static final JsonValue
Json.NULL
Represents the JSON literalnull
.static final JsonValue
JsonValue.NULL
Deprecated.UseJson.NULL
insteadstatic final JsonValue
Json.TRUE
Represents the JSON literaltrue
.static final JsonValue
JsonValue.TRUE
Deprecated.UseJson.TRUE
insteadMethods in com.espertech.esper.common.client.json.minimaljson that return JsonValueModifier and TypeMethodDescriptionJsonArray.get
(int index) Returns the value of the element at the specified position in this array.Returns the value of the member with the specified name in this object.Member.getValue()
Returns the value of this member.static JsonValue
Reads the entire input from the given reader and parses it as JSON.static JsonValue
Parses the given input string as JSON.static JsonValue
Deprecated.UseJson.parse(Reader)
insteadstatic JsonValue
Deprecated.UseJson.parse(String)
insteadstatic JsonValue
Json.value
(boolean value) Returns a JsonValue instance that represents the givenboolean
value.static JsonValue
Json.value
(double value) Returns a JsonValue instance that represents the givendouble
value.static JsonValue
Json.value
(float value) Returns a JsonValue instance that represents the givenfloat
value.static JsonValue
Json.value
(int value) Returns a JsonValue instance that represents the givenint
value.static JsonValue
Json.value
(long value) Returns a JsonValue instance that represents the givenlong
value.static JsonValue
Returns a JsonValue instance that represents the given string.static JsonValue
JsonValue.valueOf
(boolean value) Deprecated.UseJson.value()
insteadstatic JsonValue
JsonValue.valueOf
(double value) Deprecated.UseJson.value()
insteadstatic JsonValue
JsonValue.valueOf
(float value) Deprecated.UseJson.value()
insteadstatic JsonValue
JsonValue.valueOf
(int value) Deprecated.UseJson.value()
insteadstatic JsonValue
JsonValue.valueOf
(long value) Deprecated.UseJson.value()
insteadstatic JsonValue
Deprecated.UseJson.value()
insteadMethods in com.espertech.esper.common.client.json.minimaljson that return types with arguments of type JsonValueModifier and TypeMethodDescriptionJsonArray.iterator()
Returns an iterator over the values of this array in document order.JsonArray.values()
Returns a list of the values in this array in document order.Methods in com.espertech.esper.common.client.json.minimaljson with parameters of type JsonValueModifier and TypeMethodDescriptionAppends the specified JSON value to the end of this array.Appends a new member to the end of this object, with the specified name and the specified JSON value.Replaces the element at the specified position in this array with the specified JSON value.Sets the value of the member with the specified name to the specified JSON value.Constructors in com.espertech.esper.common.client.json.minimaljson with parameters of type JsonValue
Json.FALSE
instead