Package com.ibm.json.java
Class JSONArray
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList
com.ibm.json.java.JSONArray
- All Implemented Interfaces:
JSONArtifact
,Serializable
,Cloneable
,Iterable
,Collection
,List
,RandomAccess
Extension of ArrayList that only allows values which are JSON-able.
See JSONObject for a list of valid values.
Instances of this class are not thread-safe.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
boolean
addAll
(int index, Collection collection) boolean
addAll
(Collection collection) static JSONArray
parse
(InputStream is) Convert a stream of JSONArray text into JSONArray form.static JSONArray
Convert a stream (in reader form) of JSONArray text into object form.static JSONArray
Convert a String of JSONArray text into object form.Convert this object into a String of JSON text.serialize
(boolean verbose) Convert this object into a String of JSON text, specifying verbosity.void
Convert this object into a stream of JSON text.void
serialize
(OutputStream os, boolean verbose) Convert this object into a stream of JSON text.void
Convert this object into a stream of JSON text.void
Convert this object into a stream of JSON text, specifying verbosity.Methods inherited from class java.util.ArrayList
clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, replaceAll, retainAll, size, sort, spliterator, subList, toArray, toArray, trimToSize
Methods inherited from class java.util.AbstractList
equals, hashCode
Methods inherited from class java.util.AbstractCollection
containsAll, toString
Methods inherited from interface java.util.Collection
parallelStream, stream
Methods inherited from interface java.util.List
containsAll, equals, hashCode
-
Constructor Details
-
JSONArray
public JSONArray()Create a new instance of this class. -
JSONArray
public JSONArray(int initialCapacity) Create a new instance of this class with the specified initial capacity.
-
-
Method Details
-
add
-
add
-
addAll
-
addAll
-
set
-
parse
Convert a stream of JSONArray text into JSONArray form.- Parameters:
is
- The inputStream from which to read the JSON. It will assume the input stream is in UTF-8 and read it as such.- Returns:
- The contructed JSONArray Object.
- Throws:
IOEXception
- Thrown if an underlying IO error from the stream occurs, or if malformed JSON is read,IOException
-
parse
Convert a stream (in reader form) of JSONArray text into object form.- Parameters:
reader
- The reader from which the JSONArray data is read.- Returns:
- The contructed JSONArray Object.
- Throws:
IOEXception
- Thrown if an underlying IO error from the reader occurs, or if malformed JSON is read,IOException
-
parse
Convert a String of JSONArray text into object form.- Parameters:
str
- The JSONArray string to parse into a Java Object.- Returns:
- The contructed JSONArray Object.
- Throws:
IOEXception
- Thrown if malformed JSON is read,IOException
-
serialize
Convert this object into a stream of JSON text. Same as calling serialize(os,false);- Specified by:
serialize
in interfaceJSONArtifact
- Parameters:
os
- The output stream to serialize data to.- Throws:
IOException
- Thrown on IO errors during serialization.
-
serialize
Convert this object into a stream of JSON text. Same as calling serialize(writer,false);- Specified by:
serialize
in interfaceJSONArtifact
- Parameters:
os
- The output stream to serialize data to.verbose
- Whether or not to write the JSON text in a verbose format.- Throws:
IOException
- Thrown on IO errors during serialization.
-
serialize
Convert this object into a stream of JSON text. Same as calling serialize(writer,false);- Specified by:
serialize
in interfaceJSONArtifact
- Parameters:
writer
- The writer which to serialize the JSON text to.- Throws:
IOException
- Thrown on IO errors during serialization.
-
serialize
Convert this object into a stream of JSON text, specifying verbosity.- Specified by:
serialize
in interfaceJSONArtifact
- Parameters:
writer
- The writer which to serialize the JSON text to.- Throws:
IOException
- Thrown on IO errors during serialization.
-
serialize
Convert this object into a String of JSON text, specifying verbosity.- Specified by:
serialize
in interfaceJSONArtifact
- Parameters:
verbose
- Whether or not to serialize in compressed for formatted Strings.- Throws:
IOException
- Thrown on IO errors during serialization.
-
serialize
Convert this object into a String of JSON text. Same as serialize(false);- Specified by:
serialize
in interfaceJSONArtifact
- Throws:
IOException
- Thrown on IO errors during serialization.
-