Uses of Class
com.restfb.json.JsonArray
Packages that use JsonArray
-
Uses of JsonArray in com.restfb.json
Methods in com.restfb.json that return JsonArrayModifier and TypeMethodDescriptionJsonArray.add(boolean value) Appends the JSON representation of the specifiedbooleanvalue to the end of this array.JsonArray.add(double value) Appends the JSON representation of the specifieddoublevalue to the end of this array.JsonArray.add(float value) Appends the JSON representation of the specifiedfloatvalue to the end of this array.JsonArray.add(int value) Appends the JSON representation of the specifiedintvalue to the end of this array.JsonArray.add(long value) Appends the JSON representation of the specifiedlongvalue to the end of this array.Appends the specified JSON value to the end of this array.Appends the JSON representation of the specified string to the end of this array.static JsonArrayJson.array()Creates a new empty JsonArray.static JsonArrayJson.array(boolean... values) Creates a new JsonArray that contains the JSON representations of the givenbooleanvalues.static JsonArrayJson.array(double... values) Creates a new JsonArray that contains the JSON representations of the givendoublevalues.static JsonArrayJson.array(float... values) Creates a new JsonArray that contains the JSON representations of the givenfloatvalues.static JsonArrayJson.array(int... values) Creates a new JsonArray that contains the JSON representations of the givenintvalues.static JsonArrayJson.array(long... values) Creates a new JsonArray that contains the JSON representations of the givenlongvalues.static JsonArrayCreates a new JsonArray that contains the JSON representations of the given strings.JsonArray.asArray()JsonValue.asArray()Returns this JSON value asJsonArray, assuming that this value represents a JSON array.JsonArray.remove(int index) Removes the element at the specified index from this array.JsonArray.set(int index, boolean value) Replaces the element at the specified position in this array with the JSON representation of the specifiedbooleanvalue.JsonArray.set(int index, double value) Replaces the element at the specified position in this array with the JSON representation of the specifieddoublevalue.JsonArray.set(int index, float value) Replaces the element at the specified position in this array with the JSON representation of the specifiedfloatvalue.JsonArray.set(int index, int value) Replaces the element at the specified position in this array with the JSON representation of the specifiedintvalue.JsonArray.set(int index, long value) Replaces the element at the specified position in this array with the JSON representation of the specifiedlongvalue.Replaces the element at the specified position in this array with the specified JSON value.Replaces the element at the specified position in this array with the JSON representation of the specified string.static JsonArrayJsonArray.unmodifiableArray(JsonArray array) Returns an unmodifiable wrapper for the specified JsonArray.Methods in com.restfb.json with parameters of type JsonArrayModifier and TypeMethodDescriptionstatic JsonArrayJsonArray.unmodifiableArray(JsonArray array) Returns an unmodifiable wrapper for the specified JsonArray.Constructors in com.restfb.json with parameters of type JsonArray