Class JSONArray
- All Implemented Interfaces:
Serializable,Comparable,Iterable<Object>,Collection<Object>,List<Object>,JSON
get and opt
methods for accessing the values by index, and element methods
for adding or replacing values. The values can be any of these types:
Boolean, JSONArray, JSONObject,
Number, String, or the
JSONNull 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:
- An extra
,(comma) may appear just before the closing bracket. - The
nullvalue will be inserted when there is,(comma) elision. - Strings may be quoted with
'(single quote). - Strings do not need to be quoted at all if they do not begin with a
quote or single quote, and if they do not contain leading or trailing spaces,
and if they do not contain any of these characters:
{ } [ ] / \ : , = ; #and if they do not look like numbers and if they are not the reserved wordstrue,false, ornull. - Values can be separated by
;(semicolon) as well as by,(comma). - Numbers may have the
0-(octal) or0x-(hex) prefix. - Comments written in the slashshlash, slashstar, and hash conventions will be ignored.
- Author:
- JSON.org
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected Object_processValue(Object value, JsonConfig jsonConfig) voidvoidadd(int index, Object value, JsonConfig jsonConfig) booleanbooleanadd(Object value, JsonConfig jsonConfig) booleanaddAll(int index, Collection collection) booleanaddAll(int index, Collection collection, JsonConfig jsonConfig) booleanaddAll(Collection collection) booleanaddAll(Collection collection, JsonConfig jsonConfig) protected static booleanaddInstance(Object instance) Adds a reference for cycle detection check.protected JSONArrayAdds a String without performing any conversion on it.voidclear()intbooleanbooleancontains(Object o, JsonConfig jsonConfig) booleancontainsAll(Collection collection) booleancontainsAll(Collection collection, JsonConfig jsonConfig) discard(int index) Remove an element, if present.Remove an element, if present.element(boolean value) Append a boolean value.element(double value) Append a double value.element(int value) Append an int value.element(int index, boolean value) Put or replace a boolean value in the JSONArray.element(int index, double value) Put or replace a double value.element(int index, int value) Put or replace an int value.element(int index, long value) Put or replace a long value.Put or replace an object value in the JSONArray.element(int index, Object value, JsonConfig jsonConfig) Put or replace an object value in the JSONArray.Put or replace a String value in the JSONArray.element(int index, String value, JsonConfig jsonConfig) Put or replace a String value in the JSONArray.element(int index, Collection value) Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.element(int index, Collection value, JsonConfig jsonConfig) Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.element(int index, Map value, JsonConfig jsonConfig) Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.element(long value) Append an long value.Append an object value.element(Object value, JsonConfig jsonConfig) Append an object value.Append a String value.element(String value, JsonConfig jsonConfig) Append a String value.element(Collection value) Append a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.element(Collection value, JsonConfig jsonConfig) Append a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.element(Map value, JsonConfig jsonConfig) Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.Append an JSON value.element(JSONObject value) Append an JSON value.booleanprotected static voidfireArrayEndEvent(JsonConfig jsonConfig) Fires an end of array event.protected static voidfireArrayStartEvent(JsonConfig jsonConfig) Fires a start of array event.protected static voidfireElementAddedEvent(int index, Object element, JsonConfig jsonConfig) Fires an element added event.protected static voidfireErrorEvent(JSONException jsone, JsonConfig jsonConfig) Fires an error event.protected static voidfireObjectEndEvent(JsonConfig jsonConfig) Fires an end of object event.protected static voidfireObjectStartEvent(JsonConfig jsonConfig) Fires a start of object event.protected static voidfirePropertySetEvent(String key, Object value, boolean accumulated, JsonConfig jsonConfig) Fires a property set event.protected static voidfireWarnEvent(String warning, JsonConfig jsonConfig) Fires a warning event.static JSONArrayfromObject(Object object) Creates a JSONArray.static JSONArrayfromObject(Object object, JsonConfig jsonConfig) Creates a JSONArray.get(int index) Get the object value associated with an index.booleangetBoolean(int index) Get the boolean value associated with an index.static Class[]getCollectionType(PropertyDescriptor pd, boolean useGetter) Get the collection type from a getter or setter, or null if no type was found.static int[]getDimensions(JSONArray jsonArray) Returns the number of dimensions suited for a java array.doublegetDouble(int index) Get the double value associated with an index.intgetInt(int index) Get the int value associated with an index.getJSONArray(int index) Get the JSONArray associated with an index.getJSONObject(int index) Get the JSONObject associated with an index.longgetLong(int index) Get the long value associated with an index.getString(int index) Get the string associated with an index.inthashCode()intbooleanisArray()Returns true if this object is a JSONArray, false otherwise.booleanisEmpty()Returns true if this object has no elements or keys.booleaniterator()Returns an Iterator for this JSONArrayMake a string from the contents of this JSONArray.Make a string from the contents of this JSONArray.intlistIterator(int index) opt(int index) Get the optional object value associated with an index.booleanoptBoolean(int index) Get the optional boolean value associated with an index.booleanoptBoolean(int index, boolean defaultValue) Get the optional boolean value associated with an index.doubleoptDouble(int index) Get the optional double value associated with an index.doubleoptDouble(int index, double defaultValue) Get the optional double value associated with an index.intoptInt(int index) Get the optional int value associated with an index.intoptInt(int index, int defaultValue) Get the optional int value associated with an index.optJSONArray(int index) Get the optional JSONArray associated with an index.optJSONObject(int index) Get the optional JSONObject associated with an index.longoptLong(int index) Get the optional long value associated with an index.longoptLong(int index, long defaultValue) Get the optional long value associated with an index.optString(int index) Get the optional string value associated with an index.Get the optional string associated with an index.remove(int index) booleanbooleanremoveAll(Collection collection) booleanremoveAll(Collection collection, JsonConfig jsonConfig) protected static voidremoveInstance(Object instance) Removes a reference for cycle detection check.booleanretainAll(Collection collection) booleanretainAll(Collection collection, JsonConfig jsonConfig) set(int index, Object value, JsonConfig jsonConfig) voidsetExpandElements(boolean expandElements) intsize()Get the number of elements in the JSONArray, included nulls.subList(int fromIndex, int toIndex) Object[]toArray()Produce an Object[] with the contents of this JSONArray.Object[]static ObjectCreates a java array from a JSONArray.static ObjectCreates a java array from a JSONArray.static ObjectCreates a java array from a JSONArray.
Any attribute is a JSONObject and matches a key in the classMap, it will be converted to that target class.
The classMap has the following conventions: Every key must be an String. Every value must be a Class. A key may be a regular expression.static ObjecttoArray(JSONArray jsonArray, Object root, JsonConfig jsonConfig) Creates a java array from a JSONArray.static ObjecttoArray(JSONArray jsonArray, JsonConfig jsonConfig) Creates a java array from a JSONArray.static CollectiontoCollection(JSONArray jsonArray) Returns a List or a Set taking generics into account.static CollectiontoCollection(JSONArray jsonArray, Class objectClass) Returns a List or a Set taking generics into account.static CollectiontoCollection(JSONArray jsonArray, JsonConfig jsonConfig) Returns a List or a Set taking generics into account.toJSONObject(JSONArray names) Produce a JSONObject by combining a JSONArray of names with the values of this JSONArray.static ListDeprecated.replaced by toCollectionstatic ListDeprecated.replaced by toCollectionstatic ListDeprecated.replaced by toCollectionstatic ListtoList(JSONArray jsonArray, Object root, JsonConfig jsonConfig) Creates a List from a JSONArray.static ListtoList(JSONArray jsonArray, JsonConfig jsonConfig) Deprecated.replaced by toCollectiontoString()Make a JSON text of this JSONArray.toString(int indentFactor) Make a prettyprinted JSON text of this JSONArray.toString(int indentFactor, int indent) Make a prettyprinted JSON text of this JSONArray.final WriterWrite the contents as JSON text to a writer.protected voidfinal WriterwriteCanonical(Writer writer) Writes the canonicalized form of this JSON object.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface net.sf.json.JSON
write, writeCanonicalMethods inherited from interface java.util.List
replaceAll, sort, spliterator
-
Constructor Details
-
JSONArray
public JSONArray()Construct an empty JSONArray.
-
-
Method Details
-
fromObject
Creates a JSONArray.Inspects the object type to call the correct JSONArray factory method. Accepts JSON formatted strings, arrays, Collections and Enums.
- Parameters:
object-- Throws:
JSONException- if the object can not be converted to a proper JSONArray.
-
fromObject
Creates a JSONArray.Inspects the object type to call the correct JSONArray factory method. Accepts JSON formatted strings, arrays, Collections and Enums.
- Parameters:
object-- Throws:
JSONException- if the object can not be converted to a proper JSONArray.
-
getCollectionType
public static Class[] getCollectionType(PropertyDescriptor pd, boolean useGetter) throws JSONException Get the collection type from a getter or setter, or null if no type was found.Contributed by [Matt Small @ WaveMaker].
- Throws:
JSONException
-
getDimensions
Returns the number of dimensions suited for a java array. -
toArray
Creates a java array from a JSONArray. -
toArray
Creates a java array from a JSONArray. -
toArray
Creates a java array from a JSONArray.
Any attribute is a JSONObject and matches a key in the classMap, it will be converted to that target class.
The classMap has the following conventions:- Every key must be an String.
- Every value must be a Class.
- A key may be a regular expression.
-
toArray
Creates a java array from a JSONArray. -
toArray
Creates a java array from a JSONArray. -
toCollection
Returns a List or a Set taking generics into account. -
toCollection
Returns a List or a Set taking generics into account. -
toCollection
Returns a List or a Set taking generics into account.Contributed by [Matt Small @ WaveMaker].
-
toList
Deprecated.replaced by toCollectionCreates a List from a JSONArray.- See Also:
-
toList
Deprecated.replaced by toCollectionCreates a List from a JSONArray.- See Also:
-
toList
Deprecated.replaced by toCollectionCreates a List from a JSONArray.
Any attribute is a JSONObject and matches a key in the classMap, it will be converted to that target class.
The classMap has the following conventions:- Every key must be an String.
- Every value must be a Class.
- A key may be a regular expression.
-
toList
Deprecated.replaced by toCollectionCreates a List from a JSONArray.- See Also:
-
toList
Creates a List from a JSONArray. -
add
-
add
-
add
-
add
-
addAll
-
addAll
-
addAll
-
addAll
-
clear
public void clear() -
compareTo
- Specified by:
compareToin interfaceComparable
-
contains
-
contains
-
containsAll
- Specified by:
containsAllin interfaceCollection<Object>- Specified by:
containsAllin interfaceList<Object>
-
containsAll
-
discard
Remove an element, if present.- Parameters:
index- the index of the element.- Returns:
- this.
-
discard
Remove an element, if present.- Parameters:
o- the element.- Returns:
- this.
-
element
Append a boolean value. This increases the array's length by one.- Parameters:
value- A boolean value.- Returns:
- this.
-
element
Append a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.- Parameters:
value- A Collection value.- Returns:
- this.
-
element
Append a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.- Parameters:
value- A Collection value.- Returns:
- this.
-
element
Append a double value. This increases the array's length by one.- Parameters:
value- A double value.- Returns:
- this.
- Throws:
JSONException- if the value is not finite.
-
element
Append an int value. This increases the array's length by one.- Parameters:
value- An int value.- Returns:
- this.
-
element
Put or replace a boolean value in the JSONArray. If the index is greater than the length of the JSONArray, then null elements will be added as necessary to pad it out.- Parameters:
index- The subscript.value- A boolean value.- Returns:
- this.
- Throws:
JSONException- If the index is negative.
-
element
Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.- Parameters:
index- The subscript.value- A Collection value.- Returns:
- this.
- Throws:
JSONException- If the index is negative or if the value is not finite.
-
element
Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.- Parameters:
index- The subscript.value- A Collection value.- Returns:
- this.
- Throws:
JSONException- If the index is negative or if the value is not finite.
-
element
Put or replace a double value. If the index is greater than the length of the JSONArray, then null elements will be added as necessary to pad it out.- Parameters:
index- The subscript.value- A double value.- Returns:
- this.
- Throws:
JSONException- If the index is negative or if the value is not finite.
-
element
Put or replace an int value. If the index is greater than the length of the JSONArray, then null elements will be added as necessary to pad it out.- Parameters:
index- The subscript.value- An int value.- Returns:
- this.
- Throws:
JSONException- If the index is negative.
-
element
Put or replace a long value. If the index is greater than the length of the JSONArray, then null elements will be added as necessary to pad it out.- Parameters:
index- The subscript.value- A long value.- Returns:
- this.
- Throws:
JSONException- If the index is negative.
-
element
Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.- Parameters:
index- The subscript.value- The Map value.- Returns:
- this.
- Throws:
JSONException- If the index is negative or if the the value is an invalid number.
-
element
Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.- Parameters:
index- The subscript.value- The Map value.- Returns:
- this.
- Throws:
JSONException- If the index is negative or if the the value is an invalid number.
-
element
Put or replace an object value in the JSONArray. If the index is greater than the length of the JSONArray, then null elements will be added as necessary to pad it out.- Parameters:
index- The subscript.value- An object value. The value should be a Boolean, Double, Integer, JSONArray, JSONObject, Long, String, JSONString or the JSONNull object.- Returns:
- this.
- Throws:
JSONException- If the index is negative or if the the value is an invalid number.
-
element
Put or replace an object value in the JSONArray. If the index is greater than the length of the JSONArray, then null elements will be added as necessary to pad it out.- Parameters:
index- The subscript.value- An object value. The value should be a Boolean, Double, Integer, JSONArray, JSONObject, Long, String, JSONString or the JSONNull object.- Returns:
- this.
- Throws:
JSONException- If the index is negative or if the the value is an invalid number.
-
element
Put or replace a String value in the JSONArray. If the index is greater than the length of the JSONArray, then null elements will be added as necessary to pad it out.
The string may be a valid JSON formatted string, in tha case, it will be transformed to a JSONArray, JSONObject or JSONNull.- Parameters:
index- The subscript.value- A String value.- Returns:
- this.
- Throws:
JSONException- If the index is negative or if the the value is an invalid number.
-
element
Put or replace a String value in the JSONArray. If the index is greater than the length of the JSONArray, then null elements will be added as necessary to pad it out.
The string may be a valid JSON formatted string, in tha case, it will be transformed to a JSONArray, JSONObject or JSONNull.- Parameters:
index- The subscript.value- A String value.- Returns:
- this.
- Throws:
JSONException- If the index is negative or if the the value is an invalid number.
-
element
Append an JSON value. This increases the array's length by one.- Parameters:
value- An JSON value.- Returns:
- this.
-
element
Append an JSON value. This increases the array's length by one.- Parameters:
value- An JSON value.- Returns:
- this.
-
element
Append an long value. This increases the array's length by one.- Parameters:
value- A long value.- Returns:
- this.
-
element
Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.- Parameters:
value- A Map value.- Returns:
- this.
-
element
Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.- Parameters:
value- A Map value.- Returns:
- this.
-
element
Append an object value. This increases the array's length by one.- Parameters:
value- An object value. The value should be a Boolean, Double, Integer, JSONArray, JSONObject, Long, String, JSONString or the JSONNull object.- Returns:
- this.
-
element
Append an object value. This increases the array's length by one.- Parameters:
value- An object value. The value should be a Boolean, Double, Integer, JSONArray, JSONObject, Long, String, JSONString or the JSONNull object.- Returns:
- this.
-
element
Append a String value. This increases the array's length by one.
The string may be a valid JSON formatted string, in tha case, it will be transformed to a JSONArray, JSONObject or JSONNull.- Parameters:
value- A String value.- Returns:
- this.
-
element
Append a String value. This increases the array's length by one.
The string may be a valid JSON formatted string, in tha case, it will be transformed to a JSONArray, JSONObject or JSONNull.- Parameters:
value- A String value.- Returns:
- this.
-
equals
-
get
Get the object value associated with an index. -
getBoolean
public boolean getBoolean(int index) Get the boolean value associated with an index. The string values "true" and "false" are converted to boolean.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- The truth.
- Throws:
JSONException- If there is no value for the index or if the value is not convertable to boolean.
-
getDouble
public double getDouble(int index) Get the double value associated with an index.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- The value.
- Throws:
JSONException- If the key is not found or if the value cannot be converted to a number.
-
getInt
public int getInt(int index) Get the int value associated with an index.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- The value.
- Throws:
JSONException- 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.
-
getJSONArray
Get the JSONArray associated with an index.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- A JSONArray value.
- Throws:
JSONException- If there is no value for the index. or if the value is not a JSONArray
-
getJSONObject
Get the JSONObject associated with an index.- Parameters:
index- subscript- Returns:
- A JSONObject value.
- Throws:
JSONException- If there is no value for the index or if the value is not a JSONObject
-
getLong
public long getLong(int index) Get the long value associated with an index.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- The value.
- Throws:
JSONException- If the key is not found or if the value cannot be converted to a number.
-
getString
Get the string associated with an index.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- A string value.
- Throws:
JSONException- If there is no value for the index.
-
hashCode
public int hashCode() -
indexOf
-
isArray
public boolean isArray()Description copied from interface:JSONReturns true if this object is a JSONArray, false otherwise. -
isEmpty
public boolean isEmpty()Description copied from interface:JSONReturns true if this object has no elements or keys. -
isExpandElements
public boolean isExpandElements() -
iterator
Returns an Iterator for this JSONArray -
join
Make a string from the contents of this JSONArray. Theseparatorstring is inserted between each element. Warning: This method assumes that the data structure is acyclical.- Parameters:
separator- A string that will be inserted between the elements.- Returns:
- a string.
- Throws:
JSONException- If the array contains an invalid number.
-
join
Make a string from the contents of this JSONArray. Theseparatorstring is inserted between each element. Warning: This method assumes that the data structure is acyclical.- Parameters:
separator- A string that will be inserted between the elements.- Returns:
- a string.
- Throws:
JSONException- If the array contains an invalid number.
-
lastIndexOf
- Specified by:
lastIndexOfin interfaceList<Object>
-
listIterator
- Specified by:
listIteratorin interfaceList<Object>
-
listIterator
- Specified by:
listIteratorin interfaceList<Object>
-
opt
Get the optional object value associated with an index.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- An object value, or null if there is no object at that index.
-
optBoolean
public boolean optBoolean(int index) Get the optional boolean value associated with an index. It returns false if there is no value at that index, or if the value is not Boolean.TRUE or the String "true".- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- The truth.
-
optBoolean
public boolean optBoolean(int index, boolean defaultValue) Get the optional boolean value associated with an index. It returns the defaultValue if there is no value at that index or if it is not a Boolean or the String "true" or "false" (case insensitive).- Parameters:
index- The index must be between 0 and size() - 1.defaultValue- A boolean default.- Returns:
- The truth.
-
optDouble
public double optDouble(int index) Get the optional double value associated with an index. NaN is returned if there is no value for the index, or if the value is not a number and cannot be converted to a number.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- The value.
-
optDouble
public double optDouble(int index, double defaultValue) Get the optional double value associated with an index. The defaultValue is returned if there is no value for the index, or if the value is not a number and cannot be converted to a number.- Parameters:
index- subscriptdefaultValue- The default value.- Returns:
- The value.
-
optInt
public int optInt(int index) Get the optional int value associated with an index. Zero is returned if there is no value for the index, or if the value is not a number and cannot be converted to a number.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- The value.
-
optInt
public int optInt(int index, int defaultValue) Get the optional int value associated with an index. The defaultValue is returned if there is no value for the index, or if the value is not a number and cannot be converted to a number.- Parameters:
index- The index must be between 0 and size() - 1.defaultValue- The default value.- Returns:
- The value.
-
optJSONArray
Get the optional JSONArray associated with an index.- Parameters:
index- subscript- Returns:
- A JSONArray value, or null if the index has no value, or if the value is not a JSONArray.
-
optJSONObject
Get the optional JSONObject associated with an index. Null is returned if the key is not found, or null if the index has no value, or if the value is not a JSONObject.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- A JSONObject value.
-
optLong
public long optLong(int index) Get the optional long value associated with an index. Zero is returned if there is no value for the index, or if the value is not a number and cannot be converted to a number.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- The value.
-
optLong
public long optLong(int index, long defaultValue) Get the optional long value associated with an index. The defaultValue is returned if there is no value for the index, or if the value is not a number and cannot be converted to a number.- Parameters:
index- The index must be between 0 and size() - 1.defaultValue- The default value.- Returns:
- The value.
-
optString
Get the optional string value associated with an index. It returns an empty string if there is no value at that index. If the value is not a string and is not null, then it is coverted to a string.- Parameters:
index- The index must be between 0 and size() - 1.- Returns:
- A String value.
-
optString
Get the optional string associated with an index. The defaultValue is returned if the key is not found.- Parameters:
index- The index must be between 0 and size() - 1.defaultValue- The default value.- Returns:
- A String value.
-
remove
-
remove
-
removeAll
-
removeAll
-
retainAll
-
retainAll
-
set
-
set
-
setExpandElements
public void setExpandElements(boolean expandElements) -
size
public int size()Get the number of elements in the JSONArray, included nulls. -
subList
-
toArray
Produce an Object[] with the contents of this JSONArray. -
toArray
-
toJSONObject
Produce a JSONObject by combining a JSONArray of names with the values of this JSONArray.- Parameters:
names- A JSONArray containing a list of key strings. These will be paired with the values.- Returns:
- A JSONObject, or null if there are no names or if this JSONArray has no values.
- Throws:
JSONException- If any of the names are null.
-
toString
Make a JSON text of this JSONArray. For compactness, no unnecessary whitespace is added. If it is not possible to produce a syntactically correct JSON text then null will be returned instead. This could occur if the array contains an invalid number.Warning: This method assumes that the data structure is acyclical.
-
toString
Make a prettyprinted JSON text of this JSONArray. Warning: This method assumes that the data structure is acyclical.- Specified by:
toStringin interfaceJSON- Parameters:
indentFactor- The number of spaces to add to each level of indentation.- Returns:
- a printable, displayable, transmittable representation of the
object, beginning with
[(left bracket) and ending with](right bracket). - Throws:
JSONException
-
toString
Make a prettyprinted JSON text of this JSONArray. Warning: This method assumes that the data structure is acyclical.- Specified by:
toStringin interfaceJSON- Parameters:
indentFactor- The number of spaces to add to each level of indentation.indent- The indention of the top level.- Returns:
- a printable, displayable, transmittable representation of the array.
- Throws:
JSONException
-
write
protected void write(Writer writer, net.sf.json.AbstractJSON.WritingVisitor visitor) throws IOException - Throws:
IOException
-
addString
Adds a String without performing any conversion on it. -
_processValue
-
addInstance
Adds a reference for cycle detection check.- Parameters:
instance- the reference to add- Returns:
- true if the instance has not been added previously, false otherwise.
-
fireArrayEndEvent
Fires an end of array event. -
fireArrayStartEvent
Fires a start of array event. -
fireElementAddedEvent
Fires an element added event.- Parameters:
index- the index where the element was addedelement- the added element
-
fireErrorEvent
Fires an error event.- Parameters:
jsone- the thrown exception
-
fireObjectEndEvent
Fires an end of object event. -
fireObjectStartEvent
Fires a start of object event. -
firePropertySetEvent
protected static void firePropertySetEvent(String key, Object value, boolean accumulated, JsonConfig jsonConfig) Fires a property set event.- Parameters:
key- the name of the propertyvalue- the value of the propertyaccumulated- if the value has been accumulated over 'key'
-
fireWarnEvent
Fires a warning event.- Parameters:
warning- the warning message
-
removeInstance
Removes a reference for cycle detection check. -
write
Description copied from interface:JSONWrite the contents as JSON text to a writer. For compactness, no whitespace is added.Warning: This method assumes that the data structure is acyclical.
- Specified by:
writein interfaceJSON- Returns:
- The writer.
- Throws:
IOException
-
writeCanonical
Description copied from interface:JSONWrites the canonicalized form of this JSON object.- Specified by:
writeCanonicalin interfaceJSON- Throws:
IOException
-