Adds the specified value to self.
Adds all the elements of the specified array to self.
Returns true if this array contains the specified element.
Returns a deep copy of this element.
Returns the ith element of the array.
convenience method to get this element as a JsonObject.
convenience method to get this element as a JsonPrimitive.
Returns an iterator to navigate the elements of the array.
Removes the element at the specified position in this array.
Removes the first occurrence of the specified element from this array, if it is present.
Replaces the element at the specified position in this array with the specified element.
Generated using TypeDoc
A class representing an array type in Json. An array is a list of [[JsonElement]]s each of which can be of a different type. This is an ordered list, meaning that the order in which elements are added is preserved.
See com.google.gson.JsonArray for full documentation