Adds the specified value to self.
Returns true if this array contains the specified element.
Returns a deep copy of this element.
convenience method to get this element as a BigDecimal.
convenience method to get this element as a BigInteger.
convenience method to get this element as a boolean value.
convenience method to get this element as a primitive character value.
convenience method to get this element as a primitive double value.
convenience method to get this element as a primitive float value.
convenience method to get this element as a primitive integer value.
convenience method to get this element as a JsonArray.
convenience method to get this element as a JsonNull.
convenience method to get this element as a JsonObject.
convenience method to get this element as a JsonPrimitive.
convenience method to get this element as a primitive long value.
convenience method to get this element as a Number.
convenience method to get this element as a primitive short value.
convenience method to get this element as a string value.
provides check for verifying if this element is an array or not.
provides check for verifying if this element represents a null value or not.
provides check for verifying if this element is a Json object or not.
provides check for verifying if this element is a primitive or not.
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.
Returns the number of elements in the array.
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