Class JSONArray


  • @Deprecated
    public class JSONArray
    extends java.lang.Object
    Deprecated.
    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:

    • An extra , (comma) may appear just before the closing bracket.
    • The null value 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 words true, false, or null.
    • Values can be separated by ; (semicolon) as well as by , (comma).
    • Numbers may have the 0- (octal) or 0x- (hex) prefix.
    • Comments written in the slashshlash, slashstar, and hash conventions will be ignored.
    • Constructor Summary

      Constructors 
      Constructor Description
      JSONArray()
      Deprecated.
      Construct an empty JSONArray.
      JSONArray​(java.lang.String string)
      Deprecated.
      Construct a JSONArray from a source sJSON text.
      JSONArray​(java.util.Collection<?> collection)
      Deprecated.
      Construct a JSONArray from a Collection.
      JSONArray​(JSONTokener x)
      Deprecated.
      Construct a JSONArray from a JSONTokener.
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      java.lang.Object get​(int index)
      Deprecated.
      Get the object value associated with an index.
      boolean getBoolean​(int index)
      Deprecated.
      Get the boolean value associated with an index.
      double getDouble​(int index)
      Deprecated.
      Get the double value associated with an index.
      int getInt​(int index)
      Deprecated.
      Get the int value associated with an index.
      JSONArray getJSONArray​(int index)
      Deprecated.
      Get the JSONArray associated with an index.
      JSONObject getJSONObject​(int index)
      Deprecated.
      Get the JSONObject associated with an index.
      long getLong​(int index)
      Deprecated.
      Get the long value associated with an index.
      java.lang.String getString​(int index)
      Deprecated.
      Get the string associated with an index.
      boolean isNull​(int index)
      Deprecated.
      Determine if the value is null.
      java.lang.String join​(java.lang.String separator)
      Deprecated.
      Make a string from the contents of this JSONArray using JSONRenderer.join(org.apache.sling.commons.json.JSONArray, java.lang.String)
      int length()
      Deprecated.
      Get the number of elements in the JSONArray, included nulls.
      java.lang.Object opt​(int index)
      Deprecated.
      Get the optional object value associated with an index.
      boolean optBoolean​(int index)
      Deprecated.
      Get the optional boolean value associated with an index.
      boolean optBoolean​(int index, boolean defaultValue)
      Deprecated.
      Get the optional boolean value associated with an index.
      double optDouble​(int index)
      Deprecated.
      Get the optional double value associated with an index.
      double optDouble​(int index, double defaultValue)
      Deprecated.
      Get the optional double value associated with an index.
      int optInt​(int index)
      Deprecated.
      Get the optional int value associated with an index.
      int optInt​(int index, int defaultValue)
      Deprecated.
      Get the optional int value associated with an index.
      JSONArray optJSONArray​(int index)
      Deprecated.
      Get the optional JSONArray associated with an index.
      JSONObject optJSONObject​(int index)
      Deprecated.
      Get the optional JSONObject associated with an index.
      long optLong​(int index)
      Deprecated.
      Get the optional long value associated with an index.
      long optLong​(int index, long defaultValue)
      Deprecated.
      Get the optional long value associated with an index.
      java.lang.String optString​(int index)
      Deprecated.
      Get the optional string value associated with an index.
      java.lang.String optString​(int index, java.lang.String defaultValue)
      Deprecated.
      Get the optional string associated with an index.
      JSONArray put​(boolean value)
      Deprecated.
      Append a boolean value.
      JSONArray put​(double value)
      Deprecated.
      Append a double value.
      JSONArray put​(int value)
      Deprecated.
      Append an int value.
      JSONArray put​(int index, boolean value)
      Deprecated.
      Put or replace a boolean value in the JSONArray.
      JSONArray put​(int index, double value)
      Deprecated.
      Put or replace a double value.
      JSONArray put​(int index, int value)
      Deprecated.
      Put or replace an int value.
      JSONArray put​(int index, long value)
      Deprecated.
      Put or replace a long value.
      JSONArray put​(int index, java.lang.Object value)
      Deprecated.
      Put or replace an object value in the JSONArray.
      JSONArray put​(int index, java.util.Collection<?> value)
      Deprecated.
      Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.
      JSONArray put​(int index, java.util.Map<java.lang.String,​?> value)
      Deprecated.
      Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.
      JSONArray put​(long value)
      Deprecated.
      Append an long value.
      JSONArray put​(java.lang.Object value)
      Deprecated.
      Append an object value.
      JSONArray put​(java.util.Collection<?> value)
      Deprecated.
      Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.
      JSONArray put​(java.util.Map<java.lang.String,​?> value)
      Deprecated.
      Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.
      JSONObject toJSONObject​(JSONArray names)
      Deprecated.
      Produce a JSONObject by combining a JSONArray of names with the values of this JSONArray.
      java.lang.String toString()
      Deprecated.
      Make a JSON text of this JSONArray using JSONRenderer.toString(JSONArray)
      java.lang.String toString​(int indentFactor)
      Deprecated.
      Make a prettyprinted JSON text of this JSONArray.
      java.io.Writer write​(java.io.Writer writer)
      Deprecated.
      Write the contents of the JSONObject as JSON text to a writer using JSONRenderer.write(Writer, JSONArray)
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • JSONArray

        public JSONArray()
        Deprecated.
        Construct an empty JSONArray.
      • JSONArray

        public JSONArray​(JSONTokener x)
                  throws JSONException
        Deprecated.
        Construct a JSONArray from a JSONTokener.
        Parameters:
        x - A JSONTokener
        Throws:
        JSONException - If there is a syntax error.
      • JSONArray

        public JSONArray​(java.lang.String string)
                  throws JSONException
        Deprecated.
        Construct a JSONArray from a source sJSON text.
        Parameters:
        string - A string that begins with [ (left bracket) and ends with ] (right bracket).
        Throws:
        JSONException - If there is a syntax error.
      • JSONArray

        public JSONArray​(java.util.Collection<?> collection)
        Deprecated.
        Construct a JSONArray from a Collection.
        Parameters:
        collection - A Collection.
    • Method Detail

      • get

        public java.lang.Object get​(int index)
                             throws JSONException
        Deprecated.
        Get the object value associated with an index.
        Parameters:
        index - The index must be between 0 and length() - 1.
        Returns:
        An object value.
        Throws:
        JSONException - If there is no value for the index.
      • getBoolean

        public boolean getBoolean​(int index)
                           throws JSONException
        Deprecated.
        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 length() - 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)
                         throws JSONException
        Deprecated.
        Get the double value associated with an index.
        Parameters:
        index - The index must be between 0 and length() - 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)
                   throws JSONException
        Deprecated.
        Get the int value associated with an index.
        Parameters:
        index - The index must be between 0 and length() - 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

        public JSONArray getJSONArray​(int index)
                               throws JSONException
        Deprecated.
        Get the JSONArray associated with an index.
        Parameters:
        index - The index must be between 0 and length() - 1.
        Returns:
        A JSONArray value.
        Throws:
        JSONException - If there is no value for the index. or if the value is not a JSONArray
      • getJSONObject

        public JSONObject getJSONObject​(int index)
                                 throws JSONException
        Deprecated.
        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)
                     throws JSONException
        Deprecated.
        Get the long value associated with an index.
        Parameters:
        index - The index must be between 0 and length() - 1.
        Returns:
        The value.
        Throws:
        JSONException - If the key is not found or if the value cannot be converted to a number.
      • getString

        public java.lang.String getString​(int index)
                                   throws JSONException
        Deprecated.
        Get the string associated with an index.
        Parameters:
        index - The index must be between 0 and length() - 1.
        Returns:
        A string value.
        Throws:
        JSONException - If there is no value for the index.
      • isNull

        public boolean isNull​(int index)
        Deprecated.
        Determine if the value is null.
        Parameters:
        index - The index must be between 0 and length() - 1.
        Returns:
        true if the value at the index is null, or if there is no value.
      • length

        public int length()
        Deprecated.
        Get the number of elements in the JSONArray, included nulls.
        Returns:
        The length (or size).
      • opt

        public java.lang.Object opt​(int index)
        Deprecated.
        Get the optional object value associated with an index.
        Parameters:
        index - The index must be between 0 and length() - 1.
        Returns:
        An object value, or null if there is no object at that index.
      • optBoolean

        public boolean optBoolean​(int index)
        Deprecated.
        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 length() - 1.
        Returns:
        The truth.
      • optBoolean

        public boolean optBoolean​(int index,
                                  boolean defaultValue)
        Deprecated.
        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 length() - 1.
        defaultValue - A boolean default.
        Returns:
        The truth.
      • optDouble

        public double optDouble​(int index)
        Deprecated.
        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 length() - 1.
        Returns:
        The value.
      • optDouble

        public double optDouble​(int index,
                                double defaultValue)
        Deprecated.
        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 - subscript
        defaultValue - The default value.
        Returns:
        The value.
      • optInt

        public int optInt​(int index)
        Deprecated.
        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 length() - 1.
        Returns:
        The value.
      • optInt

        public int optInt​(int index,
                          int defaultValue)
        Deprecated.
        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 length() - 1.
        defaultValue - The default value.
        Returns:
        The value.
      • optJSONArray

        public JSONArray optJSONArray​(int index)
        Deprecated.
        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

        public JSONObject optJSONObject​(int index)
        Deprecated.
        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 length() - 1.
        Returns:
        A JSONObject value.
      • optLong

        public long optLong​(int index)
        Deprecated.
        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 length() - 1.
        Returns:
        The value.
      • optLong

        public long optLong​(int index,
                            long defaultValue)
        Deprecated.
        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 length() - 1.
        defaultValue - The default value.
        Returns:
        The value.
      • optString

        public java.lang.String optString​(int index)
        Deprecated.
        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 length() - 1.
        Returns:
        A String value.
      • optString

        public java.lang.String optString​(int index,
                                          java.lang.String defaultValue)
        Deprecated.
        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 length() - 1.
        defaultValue - The default value.
        Returns:
        A String value.
      • put

        public JSONArray put​(boolean value)
        Deprecated.
        Append a boolean value. This increases the array's length by one.
        Parameters:
        value - A boolean value.
        Returns:
        this.
      • put

        public JSONArray put​(java.util.Collection<?> value)
        Deprecated.
        Put 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.
      • put

        public JSONArray put​(double value)
                      throws JSONException
        Deprecated.
        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.
      • put

        public JSONArray put​(int value)
        Deprecated.
        Append an int value. This increases the array's length by one.
        Parameters:
        value - An int value.
        Returns:
        this.
      • put

        public JSONArray put​(long value)
        Deprecated.
        Append an long value. This increases the array's length by one.
        Parameters:
        value - A long value.
        Returns:
        this.
      • put

        public JSONArray put​(java.util.Map<java.lang.String,​?> value)
        Deprecated.
        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.
      • put

        public JSONArray put​(java.lang.Object value)
        Deprecated.
        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, or String, or the JSONObject.NULL object.
        Returns:
        this.
      • put

        public JSONArray put​(int index,
                             boolean value)
                      throws JSONException
        Deprecated.
        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.
      • put

        public JSONArray put​(int index,
                             java.util.Collection<?> value)
                      throws JSONException
        Deprecated.
        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.
      • put

        public JSONArray put​(int index,
                             double value)
                      throws JSONException
        Deprecated.
        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.
      • put

        public JSONArray put​(int index,
                             int value)
                      throws JSONException
        Deprecated.
        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.
      • put

        public JSONArray put​(int index,
                             long value)
                      throws JSONException
        Deprecated.
        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.
      • put

        public JSONArray put​(int index,
                             java.util.Map<java.lang.String,​?> value)
                      throws JSONException
        Deprecated.
        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.
      • put

        public JSONArray put​(int index,
                             java.lang.Object value)
                      throws JSONException
        Deprecated.
        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 - 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.
        Returns:
        this.
        Throws:
        JSONException - If the index is negative or if the the value is an invalid number.
      • toJSONObject

        public JSONObject toJSONObject​(JSONArray names)
                                throws JSONException
        Deprecated.
        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

        public java.lang.String toString()
        Deprecated.
        Make a JSON text of this JSONArray using JSONRenderer.toString(JSONArray)
        Overrides:
        toString in class java.lang.Object
      • toString

        public java.lang.String toString​(int indentFactor)
                                  throws JSONException
        Deprecated.
        Make a prettyprinted JSON text of this JSONArray. Warning: This method assumes that the data structure is acyclical.
        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