Class JSONArray
public class JSONArray extends Object
JSONObjects, other JSONArrays, Strings,
Booleans, Integers, Longs, Doubles, null or JSONObject.NULL.
Values may not be NaNs, infinities, or of any type not listed here.
JSONArray has the same type coercion behavior and
optional/mandatory accessors as JSONObject. See that class'
documentation for details.
Warning: this class represents null in two incompatible
ways: the standard Java null reference, and the sentinel value JSONObject.NULL. In particular, get fails if the requested index
holds the null reference, but succeeds if it holds JSONObject.NULL.
Instances of this class are not thread safe. Although this class is nonfinal, it was not designed for inheritance and should not be subclassed. In particular, self-use by overridable methods is not specified. See Effective Java Item 17, "Design and Document or inheritance or else prohibit it" for further information.
-
Constructor Summary
Constructors Constructor Description JSONArray()Creates aJSONArraywith no values.JSONArray(Object array)Creates a newJSONArraywith values from the given primitive array.JSONArray(String json)Creates a newJSONArraywith values from the JSON string.JSONArray(Collection copyFrom)Creates a newJSONArrayby copying all values from the given collection.JSONArray(JSONTokener readFrom)Creates a newJSONArraywith values from the next array in the tokener. -
Method Summary
Modifier and Type Method Description booleanequals(Object o)Compares this instance with the specified object and indicates if they are equal.Objectget(int index)Returns the value atindex.booleangetBoolean(int index)Returns the value atindexif it exists and is a boolean or can be coerced to a boolean.doublegetDouble(int index)Returns the value atindexif it exists and is a double or can be coerced to a double.intgetInt(int index)Returns the value atindexif it exists and is an int or can be coerced to an int.JSONArraygetJSONArray(int index)Returns the value atindexif it exists and is aJSONArray.JSONObjectgetJSONObject(int index)Returns the value atindexif it exists and is aJSONObject.longgetLong(int index)Returns the value atindexif it exists and is a long or can be coerced to a long.StringgetString(int index)Returns the value atindexif it exists, coercing it if necessary.inthashCode()Returns an integer hash code for this object.booleanisNull(int index)Returns true if this array has no value atindex, or if its value is thenullreference orJSONObject.NULL.Stringjoin(String separator)Returns a new string by alternating this array's values withseparator.intlength()Returns the number of values in this array.Objectopt(int index)Returns the value atindex, or null if the array has no value atindex.booleanoptBoolean(int index)Returns the value atindexif it exists and is a boolean or can be coerced to a boolean.booleanoptBoolean(int index, boolean fallback)Returns the value atindexif it exists and is a boolean or can be coerced to a boolean.doubleoptDouble(int index)Returns the value atindexif it exists and is a double or can be coerced to a double.doubleoptDouble(int index, double fallback)Returns the value atindexif it exists and is a double or can be coerced to a double.intoptInt(int index)Returns the value atindexif it exists and is an int or can be coerced to an int.intoptInt(int index, int fallback)Returns the value atindexif it exists and is an int or can be coerced to an int.JSONArrayoptJSONArray(int index)Returns the value atindexif it exists and is aJSONArray.JSONObjectoptJSONObject(int index)Returns the value atindexif it exists and is aJSONObject.longoptLong(int index)Returns the value atindexif it exists and is a long or can be coerced to a long.longoptLong(int index, long fallback)Returns the value atindexif it exists and is a long or can be coerced to a long.StringoptString(int index)Returns the value atindexif it exists, coercing it if necessary.StringoptString(int index, String fallback)Returns the value atindexif it exists, coercing it if necessary.JSONArrayput(boolean value)Appendsvalueto the end of this array.JSONArrayput(double value)Appendsvalueto the end of this array.JSONArrayput(int value)Appendsvalueto the end of this array.JSONArrayput(int index, boolean value)Sets the value atindextovalue, null padding this array to the required length if necessary.JSONArrayput(int index, double value)Sets the value atindextovalue, null padding this array to the required length if necessary.JSONArrayput(int index, int value)Sets the value atindextovalue, null padding this array to the required length if necessary.JSONArrayput(int index, long value)Sets the value atindextovalue, null padding this array to the required length if necessary.JSONArrayput(int index, Object value)Sets the value atindextovalue, null padding this array to the required length if necessary.JSONArrayput(long value)Appendsvalueto the end of this array.JSONArrayput(Object value)Appendsvalueto the end of this array.Objectremove(int index)Removes and returns the value atindex, or null if the array has no value atindex.JSONObjecttoJSONObject(JSONArray names)Returns a new object whose values are the values in this array, and whose names are the values innames.StringtoString()Encodes this array as a compact JSON string, such as:StringtoString(int indentSpaces)Encodes this array as a human readable JSON string for debugging, such as:
-
Constructor Details
-
JSONArray
public JSONArray()Creates aJSONArraywith no values. -
JSONArray
Creates a newJSONArrayby copying all values from the given collection.- Parameters:
copyFrom- a collection whose values are of supported types. Unsupported values are not permitted and will yield an array in an inconsistent state.
-
JSONArray
Creates a newJSONArraywith values from the next array in the tokener.- Parameters:
readFrom- a tokener whose nextValue() method will yield aJSONArray.- Throws:
JSONException- if the parse fails or doesn't yield aJSONArray.
-
JSONArray
Creates a newJSONArraywith values from the JSON string.- Parameters:
json- a JSON-encoded string containing an array.- Throws:
JSONException- if the parse fails or doesn't yield aJSONArray.
-
JSONArray
Creates a newJSONArraywith values from the given primitive array.- Throws:
JSONException
-
-
Method Details
-
length
public int length()Returns the number of values in this array. -
put
Appendsvalueto the end of this array.- Returns:
- this array.
-
put
Appendsvalueto the end of this array.- Parameters:
value- a finite value. May not beNaNsorinfinities.- Returns:
- this array.
- Throws:
JSONException
-
put
Appendsvalueto the end of this array.- Returns:
- this array.
-
put
Appendsvalueto the end of this array.- Returns:
- this array.
-
put
Appendsvalueto the end of this array.- Parameters:
value- aJSONObject,JSONArray, String, Boolean, Integer, Long, Double,JSONObject.NULL, ornull. May not beNaNsorinfinities. Unsupported values are not permitted and will cause the array to be in an inconsistent state.- Returns:
- this array.
-
put
Sets the value atindextovalue, null padding this array to the required length if necessary. If a value already exists atindex, it will be replaced.- Returns:
- this array.
- Throws:
JSONException
-
put
Sets the value atindextovalue, null padding this array to the required length if necessary. If a value already exists atindex, it will be replaced.- Parameters:
value- a finite value. May not beNaNsorinfinities.- Returns:
- this array.
- Throws:
JSONException
-
put
Sets the value atindextovalue, null padding this array to the required length if necessary. If a value already exists atindex, it will be replaced.- Returns:
- this array.
- Throws:
JSONException
-
put
Sets the value atindextovalue, null padding this array to the required length if necessary. If a value already exists atindex, it will be replaced.- Returns:
- this array.
- Throws:
JSONException
-
put
Sets the value atindextovalue, null padding this array to the required length if necessary. If a value already exists atindex, it will be replaced.- Parameters:
value- aJSONObject,JSONArray, String, Boolean, Integer, Long, Double,JSONObject.NULL, ornull. May not beNaNsorinfinities.- Returns:
- this array.
- Throws:
JSONException
-
isNull
public boolean isNull(int index)Returns true if this array has no value atindex, or if its value is thenullreference orJSONObject.NULL. -
get
Returns the value atindex.- Throws:
JSONException- if this array has no value atindex, or if that value is thenullreference. This method returns normally if the value isJSONObject#NULL.
-
opt
Returns the value atindex, or null if the array has no value atindex. -
remove
Removes and returns the value atindex, or null if the array has no value atindex. -
getBoolean
Returns the value atindexif it exists and is a boolean or can be coerced to a boolean.- Throws:
JSONException- if the value atindexdoesn't exist or cannot be coerced to a boolean.
-
optBoolean
public boolean optBoolean(int index)Returns the value atindexif it exists and is a boolean or can be coerced to a boolean. Returns false otherwise. -
optBoolean
public boolean optBoolean(int index, boolean fallback)Returns the value atindexif it exists and is a boolean or can be coerced to a boolean. Returnsfallbackotherwise. -
getDouble
Returns the value atindexif it exists and is a double or can be coerced to a double.- Throws:
JSONException- if the value atindexdoesn't exist or cannot be coerced to a double.
-
optDouble
public double optDouble(int index)Returns the value atindexif it exists and is a double or can be coerced to a double. ReturnsNaNotherwise. -
optDouble
public double optDouble(int index, double fallback)Returns the value atindexif it exists and is a double or can be coerced to a double. Returnsfallbackotherwise. -
getInt
Returns the value atindexif it exists and is an int or can be coerced to an int.- Throws:
JSONException- if the value atindexdoesn't exist or cannot be coerced to a int.
-
optInt
public int optInt(int index)Returns the value atindexif it exists and is an int or can be coerced to an int. Returns 0 otherwise. -
optInt
public int optInt(int index, int fallback)Returns the value atindexif it exists and is an int or can be coerced to an int. Returnsfallbackotherwise. -
getLong
Returns the value atindexif it exists and is a long or can be coerced to a long.- Throws:
JSONException- if the value atindexdoesn't exist or cannot be coerced to a long.
-
optLong
public long optLong(int index)Returns the value atindexif it exists and is a long or can be coerced to a long. Returns 0 otherwise. -
optLong
public long optLong(int index, long fallback)Returns the value atindexif it exists and is a long or can be coerced to a long. Returnsfallbackotherwise. -
getString
Returns the value atindexif it exists, coercing it if necessary.- Throws:
JSONException- if no such value exists.
-
optString
Returns the value atindexif it exists, coercing it if necessary. Returns the empty string if no such value exists. -
optString
Returns the value atindexif it exists, coercing it if necessary. Returnsfallbackif no such value exists. -
getJSONArray
Returns the value atindexif it exists and is aJSONArray.- Throws:
JSONException- if the value doesn't exist or is not aJSONArray.
-
optJSONArray
Returns the value atindexif it exists and is aJSONArray. Returns null otherwise. -
getJSONObject
Returns the value atindexif it exists and is aJSONObject.- Throws:
JSONException- if the value doesn't exist or is not aJSONObject.
-
optJSONObject
Returns the value atindexif it exists and is aJSONObject. Returns null otherwise. -
toJSONObject
Returns a new object whose values are the values in this array, and whose names are the values innames. Names and values are paired up by index from 0 through to the shorter array's length. Names that are not strings will be coerced to strings. This method returns null if either array is empty.- Throws:
JSONException
-
join
Returns a new string by alternating this array's values withseparator. This array's string values are quoted and have their special characters escaped. For example, the array containing the strings '12" pizza', 'taco' and 'soda' joined on '+' returns this:"12\" pizza"+"taco"+"soda"
- Throws:
JSONException
-
toString
Encodes this array as a compact JSON string, such as:[94043,90210]
-
toString
Encodes this array as a human readable JSON string for debugging, such as:[ 94043, 90210 ]- Parameters:
indentSpaces- the number of spaces to indent for each level of nesting.- Throws:
JSONException
-
equals
Description copied from class:ObjectCompares this instance with the specified object and indicates if they are equal. In order to be equal,omust represent the same object as this instance using a class-specific comparison. The general contract is that this comparison should be reflexive, symmetric, and transitive. Also, no object reference other than null is equal to null.The default implementation returns
trueonly ifthis == o. See Writing a correctequalsmethod if you intend implementing your ownequalsmethod.The general contract for the
equalsandObject.hashCode()methods is that ifequalsreturnstruefor any two objects, thenhashCode()must return the same value for these objects. This means that subclasses ofObjectusually override either both methods or neither of them.- Overrides:
equalsin classObject- Parameters:
o- the object to compare this instance with.- Returns:
trueif the specified object is equal to thisObject;falseotherwise.- See Also:
Object.hashCode()
-
hashCode
public int hashCode()Description copied from class:ObjectReturns an integer hash code for this object. By contract, any two objects for whichObject.equals(java.lang.Object)returnstruemust return the same hash code value. This means that subclasses ofObjectusually override both methods or neither method.Note that hash values must not change over time unless information used in equals comparisons also changes.
See Writing a correct
hashCodemethod if you intend implementing your ownhashCodemethod.- Overrides:
hashCodein classObject- Returns:
- this object's hash code.
- See Also:
Object.equals(java.lang.Object)
-