Uses of Class
org.eclipse.rap.json.JsonValue
Packages that use JsonValue
-
Uses of JsonValue in org.eclipse.rap.json
Subclasses of JsonValue in org.eclipse.rap.jsonModifier and TypeClassDescriptionclass
/** Represents a JSON array, i.e.class
Represents a JSON object, i.e.Fields in org.eclipse.rap.json declared as JsonValueModifier and TypeFieldDescriptionstatic final JsonValue
JsonValue.FALSE
Represents the JSON literalfalse
.static final JsonValue
JsonValue.NULL
The JSON literalnull
.static final JsonValue
JsonValue.TRUE
Represents the JSON literaltrue
.Methods in org.eclipse.rap.json 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.JsonObject.Member.getValue()
Returns the value of this member.static JsonValue
Reads a JSON value from the given reader.static JsonValue
Reads a JSON value from the given string.static JsonValue
JsonValue.valueOf
(boolean value) Returns a JsonValue instance that represents the givenboolean
value.static JsonValue
JsonValue.valueOf
(double value) Returns a JsonValue instance that represents the givendouble
value.static JsonValue
JsonValue.valueOf
(float value) Returns a JsonValue instance that represents the givenfloat
value.static JsonValue
JsonValue.valueOf
(int value) Returns a JsonValue instance that represents the givenint
value.static JsonValue
JsonValue.valueOf
(long value) Returns a JsonValue instance that represents the givenlong
value.static JsonValue
Returns a JsonValue instance that represents the given string.Methods in org.eclipse.rap.json 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 org.eclipse.rap.json with parameters of type JsonValueModifier and TypeMethodDescriptionAdds the specified JSON value to the array.Adds a new member at 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. -
Uses of JsonValue in org.eclipse.rap.rwt.remote
Methods in org.eclipse.rap.rwt.remote that return JsonValueModifier and TypeMethodDescriptionstatic JsonValue
Returns the JSON representation for the given Color.static JsonValue
Returns the JSON representation for the given Color with an additional alpha (opacity) value.static JsonValue
Returns the JSON representation for the given Cursor.static JsonValue
Returns the JSON representation for the given Font.static JsonValue
Returns the JSON representation for the given FontData.static JsonValue
Returns the JSON representation for the given Image.static JsonValue
Returns the JSON representation for the given Point.static JsonValue
Returns the JSON representation for the given array Point.static JsonValue
Returns the JSON representation for the given Rectangle.static JsonValue
Returns the JSON representation for the given RGB.static JsonValue
Returns the JSON representation for the given RGB with an additional alpha (opacity) value.static JsonValue
Returns the JSON representation for the given Widget.static JsonValue
Returns the JSON representation for the given array of widgets.Methods in org.eclipse.rap.rwt.remote with parameters of type JsonValueModifier and TypeMethodDescriptionstatic Point
Returns an instance of Point for the given JSON representation.static Rectangle
JsonMapping.readRectangle
(JsonValue value) Returns an instance of Rectangle for the given JSON representation.static RGB
Returns an instance of RGB for the given JSON representation.void
Sets the specified property of the remote object to the given value.