|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.compass.core.json.impl.DefaultJSONArray
public class DefaultJSONArray
A JSONArray is an ordered sequence of values. Its external text form is a
string wrapped in square brackets with commas separating the values. The
internal form is an object having get and opt
methods for accessing the values by index, and put methods for
adding or replacing values. The values can be any of these types:
Boolean, JSONArray, JSONObject,
Number, String, or the
JSONObject.NULL object.
The constructor can convert a JSON text into a Java object. The
toString method converts to JSON text.
A get method returns a value if one can be found, and throws an
exception if one cannot be found. An opt method returns a
default value instead of throwing an exception, and so is useful for
obtaining optional values.
The generic get() and opt() methods return an
object which you can cast or query for type. There are also typed
get and opt methods that do type checking and type
coersion for you.
The texts produced by the toString methods strictly conform to
JSON syntax rules. The constructors are more forgiving in the texts they will
accept:
, (comma) may appear just
before the closing bracket.null value will be inserted when there
is , (comma) elision.' (single
quote).{ } [ ] / \ : , = ; # and if they do not look like numbers
and if they are not the reserved words true,
false, or null.; (semicolon) as
well as by , (comma).0- (octal) or
0x- (hex) prefix.
| Constructor Summary | |
|---|---|
DefaultJSONArray()
Construct an empty JSONArray. |
|
DefaultJSONArray(Collection collection)
Construct a JSONArray from a Collection. |
|
DefaultJSONArray(DefaultJSONTokener x)
Construct a JSONArray from a JSONTokener. |
|
DefaultJSONArray(Object array)
Construct a JSONArray from an array |
|
DefaultJSONArray(String source)
Construct a JSONArray from a source JSON text. |
|
| Method Summary | |
|---|---|
Object |
get(int index)
Get the object value associated with an index. |
boolean |
getBoolean(int index)
Get the boolean value associated with an index. |
double |
getDouble(int index)
Get the double value associated with an index. |
int |
getInt(int index)
Get the int value associated with an index. |
DefaultJSONArray |
getJSONArray(int index)
Get the JSONArray associated with an index. |
DefaultJSONObject |
getJSONObject(int index)
Get the JSONObject associated with an index. |
long |
getLong(int index)
Get the long value associated with an index. |
String |
getString(int index)
Get the string associated with an index. |
boolean |
isNull(int index)
Determine if the value is null. |
String |
join(String separator)
Make a string from the contents of this JSONArray. |
int |
length()
Get the number of elements in the JSONArray, included nulls. |
Object |
opt(int index)
Get the optional object value associated with an index. |
boolean |
optBoolean(int index)
Get the optional boolean value associated with an index. |
boolean |
optBoolean(int index,
boolean defaultValue)
Get the optional boolean value associated with an index. |
double |
optDouble(int index)
Get the optional double value associated with an index. |
double |
optDouble(int index,
double defaultValue)
Get the optional double value associated with an index. |
int |
optInt(int index)
Get the optional int value associated with an index. |
int |
optInt(int index,
int defaultValue)
Get the optional int value associated with an index. |
DefaultJSONArray |
optJSONArray(int index)
Get the optional JSONArray associated with an index. |
DefaultJSONObject |
optJSONObject(int index)
Get the optional JSONObject associated with an index. |
long |
optLong(int index)
Get the optional long value associated with an index. |
long |
optLong(int index,
long defaultValue)
Get the optional long value associated with an index. |
String |
optString(int index)
Get the optional string value associated with an index. |
String |
optString(int index,
String defaultValue)
Get the optional string associated with an index. |
DefaultJSONArray |
put(boolean value)
Append a boolean value. |
DefaultJSONArray |
put(Collection value)
Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection. |
DefaultJSONArray |
put(double value)
Append a double value. |
DefaultJSONArray |
put(int value)
Append an int value. |
DefaultJSONArray |
put(int index,
boolean value)
Put or replace a boolean value in the JSONArray. |
DefaultJSONArray |
put(int index,
Collection value)
Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection. |
DefaultJSONArray |
put(int index,
double value)
Put or replace a double value. |
DefaultJSONArray |
put(int index,
int value)
Put or replace an int value. |
DefaultJSONArray |
put(int index,
long value)
Put or replace a long value. |
DefaultJSONArray |
put(int index,
Map value)
Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map. |
DefaultJSONArray |
put(int index,
Object value)
Put or replace an object value in the JSONArray. |
DefaultJSONArray |
put(long value)
Append an long value. |
DefaultJSONArray |
put(Map value)
Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map. |
DefaultJSONArray |
put(Object value)
Append an object value. |
DefaultJSONObject |
toJSONObject(DefaultJSONArray names)
Produce a JSONObject by combining a JSONArray of names with the values of this JSONArray. |
String |
toString()
Make a JSON text of this JSONArray. |
String |
toString(int indentFactor)
Make a prettyprinted JSON text of this JSONArray. |
(package private) String |
toString(int indentFactor,
int indent)
Make a prettyprinted JSON text of this JSONArray. |
Writer |
write(Writer writer)
Write the contents of the JSONArray as JSON text to a writer. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public DefaultJSONArray()
public DefaultJSONArray(DefaultJSONTokener x)
throws DefaultJSONException
x - A JSONTokener
DefaultJSONException - If there is a syntax error.
public DefaultJSONArray(String source)
throws DefaultJSONException
source - A string that begins with
[ (left bracket)
and ends with ] (right bracket).
DefaultJSONException - If there is a syntax error.public DefaultJSONArray(Collection collection)
collection - A Collection.
public DefaultJSONArray(Object array)
throws DefaultJSONException
DefaultJSONException - If not an array.| Method Detail |
|---|
public Object get(int index)
throws DefaultJSONException
index - The index must be between 0 and length() - 1.
DefaultJSONException - If there is no value for the index.
public boolean getBoolean(int index)
throws DefaultJSONException
index - The index must be between 0 and length() - 1.
DefaultJSONException - If there is no value for the index or if the
value is not convertable to boolean.
public double getDouble(int index)
throws DefaultJSONException
index - The index must be between 0 and length() - 1.
DefaultJSONException - If the key is not found or if the value cannot
be converted to a number.
public int getInt(int index)
throws DefaultJSONException
index - The index must be between 0 and length() - 1.
DefaultJSONException - If the key is not found or if the value cannot
be converted to a number.
if the value cannot be converted to a number.
public DefaultJSONArray getJSONArray(int index)
throws DefaultJSONException
index - The index must be between 0 and length() - 1.
DefaultJSONException - If there is no value for the index. or if the
value is not a JSONArray
public DefaultJSONObject getJSONObject(int index)
throws DefaultJSONException
index - subscript
DefaultJSONException - If there is no value for the index or if the
value is not a JSONObject
public long getLong(int index)
throws DefaultJSONException
index - The index must be between 0 and length() - 1.
DefaultJSONException - If the key is not found or if the value cannot
be converted to a number.
public String getString(int index)
throws DefaultJSONException
index - The index must be between 0 and length() - 1.
DefaultJSONException - If there is no value for the index.public boolean isNull(int index)
isNull in interface JsonArrayindex - The index must be between 0 and length() - 1.
public String join(String separator)
throws DefaultJSONException
separator string is inserted between each element.
Warning: This method assumes that the data structure is acyclical.
separator - A string that will be inserted between the elements.
DefaultJSONException - If the array contains an invalid number.public int length()
length in interface JsonArraypublic Object opt(int index)
opt in interface JsonArrayindex - The index must be between 0 and length() - 1.
public boolean optBoolean(int index)
index - The index must be between 0 and length() - 1.
public boolean optBoolean(int index,
boolean defaultValue)
index - The index must be between 0 and length() - 1.defaultValue - A boolean default.
public double optDouble(int index)
index - The index must be between 0 and length() - 1.
public double optDouble(int index,
double defaultValue)
index - subscriptdefaultValue - The default value.
public int optInt(int index)
index - The index must be between 0 and length() - 1.
public int optInt(int index,
int defaultValue)
index - The index must be between 0 and length() - 1.defaultValue - The default value.
public DefaultJSONArray optJSONArray(int index)
index - subscript
public DefaultJSONObject optJSONObject(int index)
index - The index must be between 0 and length() - 1.
public long optLong(int index)
index - The index must be between 0 and length() - 1.
public long optLong(int index,
long defaultValue)
index - The index must be between 0 and length() - 1.defaultValue - The default value.
public String optString(int index)
index - The index must be between 0 and length() - 1.
public String optString(int index,
String defaultValue)
index - The index must be between 0 and length() - 1.defaultValue - The default value.
public DefaultJSONArray put(boolean value)
value - A boolean value.
public DefaultJSONArray put(Collection value)
value - A Collection value.
public DefaultJSONArray put(double value)
throws DefaultJSONException
value - A double value.
DefaultJSONException - if the value is not finite.public DefaultJSONArray put(int value)
value - An int value.
public DefaultJSONArray put(long value)
value - A long value.
public DefaultJSONArray put(Map value)
value - A Map value.
public DefaultJSONArray put(Object value)
value - An object value. The value should be a
Boolean, Double, Integer, JSONArray, JSONObject, Long, or String, or the
JSONObject.NULL object.
public DefaultJSONArray put(int index,
boolean value)
throws DefaultJSONException
index - The subscript.value - A boolean value.
DefaultJSONException - If the index is negative.
public DefaultJSONArray put(int index,
Collection value)
throws DefaultJSONException
index - The subscript.value - A Collection value.
DefaultJSONException - If the index is negative or if the value is
not finite.
public DefaultJSONArray put(int index,
double value)
throws DefaultJSONException
index - The subscript.value - A double value.
DefaultJSONException - If the index is negative or if the value is
not finite.
public DefaultJSONArray put(int index,
int value)
throws DefaultJSONException
index - The subscript.value - An int value.
DefaultJSONException - If the index is negative.
public DefaultJSONArray put(int index,
long value)
throws DefaultJSONException
index - The subscript.value - A long value.
DefaultJSONException - If the index is negative.
public DefaultJSONArray put(int index,
Map value)
throws DefaultJSONException
index - The subscript.value - The Map value.
DefaultJSONException - If the index is negative or if the the value is
an invalid number.
public DefaultJSONArray put(int index,
Object value)
throws DefaultJSONException
index - The subscript.value - The value to put into the array. The value should be a
Boolean, Double, Integer, JSONArray, JSONObject, Long, or String, or the
JSONObject.NULL object.
DefaultJSONException - If the index is negative or if the the value is
an invalid number.
public DefaultJSONObject toJSONObject(DefaultJSONArray names)
throws DefaultJSONException
names - A JSONArray containing a list of key strings. These will be
paired with the values.
DefaultJSONException - If any of the names are null.public String toString()
Warning: This method assumes that the data structure is acyclical.
toString in class Object
public String toString(int indentFactor)
throws DefaultJSONException
indentFactor - The number of spaces to add to each level of
indentation.
[ (left bracket) and ending
with ] (right bracket).
DefaultJSONException
String toString(int indentFactor,
int indent)
throws DefaultJSONException
indentFactor - The number of spaces to add to each level of
indentation.indent - The indention of the top level.
DefaultJSONException
public Writer write(Writer writer)
throws DefaultJSONException
Warning: This method assumes that the data structure is acyclical.
DefaultJSONException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||