Uses of Class
org.eclipse.rap.json.JsonArray
Packages that use JsonArray
-
Uses of JsonArray in org.eclipse.rap.json
Methods in org.eclipse.rap.json that return JsonArrayModifier and TypeMethodDescriptionJsonArray.add
(boolean value) Adds the JSON representation of the specifiedboolean
value to the array.JsonArray.add
(double value) Adds the JSON representation of the specifieddouble
value to the array.JsonArray.add
(float value) Adds the JSON representation of the specifiedfloat
value to the array.JsonArray.add
(int value) Adds the JSON representation of the specifiedint
value to the array.JsonArray.add
(long value) Adds the JSON representation of the specifiedlong
value to the array.Adds the JSON representation of the specified string to the array.Adds the specified JSON value to the array.JsonArray.asArray()
JsonValue.asArray()
Returns this JSON value asJsonArray
, assuming that this value represents a JSON array.static JsonArray
Reads a JSON array from the given reader.static JsonArray
Reads a JSON array from the given string.JsonArray.set
(int index, boolean value) Replaces the element at the specified position in this array with the JSON representation of the specifiedboolean
value.JsonArray.set
(int index, double value) Replaces the element at the specified position in this array with the JSON representation of the specifieddouble
value.JsonArray.set
(int index, float value) Replaces the element at the specified position in this array with the JSON representation of the specifiedfloat
value.JsonArray.set
(int index, int value) Replaces the element at the specified position in this array with the JSON representation of the specifiedint
value.JsonArray.set
(int index, long value) Replaces the element at the specified position in this array with the JSON representation of the specifiedlong
value.Replaces the element at the specified position in this array with the JSON representation of the specified string.Replaces the element at the specified position in this array with the specified JSON value.static JsonArray
JsonArray.unmodifiableArray
(JsonArray array) Returns an unmodifiable wrapper for the specified JsonArray.Methods in org.eclipse.rap.json with parameters of type JsonArrayModifier and TypeMethodDescriptionstatic JsonArray
JsonArray.unmodifiableArray
(JsonArray array) Returns an unmodifiable wrapper for the specified JsonArray.Constructors in org.eclipse.rap.json with parameters of type JsonArray