程序包 com.sh.json

类 JSONArray

所有已实现的接口:
JSON, Serializable, Comparable, Iterable, Collection, List

public class JSONArray extends AbstractJSON implements JSON, List, Comparable
A JSONArray is an ordered sequence of values
另请参阅:
  • 构造器详细资料

    • JSONArray

      public JSONArray()
      Construct an empty JSONArray.
    • JSONArray

      public JSONArray(int initialCapacity)
  • 方法详细资料

    • fromObject

      public static JSONArray fromObject(Object object)
      Creates a JSONArray.
      Inspects the object type to call the correct JSONArray factory method. Accepts JSON formatted strings, arrays, Collections and Enums.
      参数:
      object -
      抛出:
      JSONException - if the object can not be converted to a proper JSONArray.
    • parseArray

      public static JSONArray parseArray(Object object)
    • fromObject

      public static JSONArray fromObject(Object object, JsonConfig jsonConfig)
      Creates a JSONArray.
      Inspects the object type to call the correct JSONArray factory method. Accepts JSON formatted strings, arrays, Collections and Enums.
      参数:
      object -
      抛出:
      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].
      抛出:
      JSONException
    • getDimensions

      public static int[] getDimensions(JSONArray jsonArray)
      Returns the number of dimensions suited for a java array.
    • toArray

      public static <T> T[] toArray(JSONArray jsonArray, Class<T> objectClass)
      Creates a java array from a JSONArray.
    • toArray

      public static <T> T[] toArray(String jsonStr, Class<T> objectClass)
    • toArray

      protected static Object toArray(JSONArray jsonArray, Class objectClass, Map classMap)
      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

      protected static Object toArray(JSONArray jsonArray, JsonConfig jsonConfig)
      Creates a java array from a JSONArray.
    • toArray

      protected static Object toArray(JSONArray jsonArray, Object root, JsonConfig jsonConfig)
      Creates a java array from a JSONArray.
    • toCollection

      protected static Collection toCollection(JSONArray jsonArray)
      Returns a List or a Set taking generics into account.
    • toCollection

      protected static Collection toCollection(JSONArray jsonArray, Class objectClass)
      Returns a List or a Set taking generics into account.
    • toCollection

      protected static Collection toCollection(JSONArray jsonArray, JsonConfig jsonConfig)
      Returns a List or a Set taking generics into account.
      Contributed by [Matt Small @ WaveMaker].
    • toList

      public static <T> List<T> toList(JSONArray jsonArray, Class<T> objectClass)
      Creates a List from a JSONArray. deprecated replaced by toCollection
      另请参阅:
    • toList

      public static <T> List<T> toList(String jsonStr, Class<T> objectClass)
    • toList

      public static List toList(JSONArray jsonArray, Class objectClass, Map classMap)
      Creates 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.
      deprecated replaced by toCollection
      另请参阅:
      • #toCollection(JSONArray,Class,Map)
    • toList

      public static List toList(JSONArray jsonArray, JsonConfig jsonConfig)
      Creates a List from a JSONArray.
      deprecated replaced by toCollection
      另请参阅:
    • toList

      public static List toList(JSONArray jsonArray, Object root, JsonConfig jsonConfig)
      Creates a List from a JSONArray.
    • add

      public void add(int index, Object value)
      指定者:
      add 在接口中 List
    • add

      public void add(int index, Object value, JsonConfig jsonConfig)
    • add

      public boolean add(Object value)
      指定者:
      add 在接口中 Collection
      指定者:
      add 在接口中 List
    • fluentAdd

      public JSONArray fluentAdd(Object value)
    • add

      public boolean add(Object value, JsonConfig jsonConfig)
    • addAll

      public boolean addAll(Collection collection)
      指定者:
      addAll 在接口中 Collection
      指定者:
      addAll 在接口中 List
    • addAll

      public boolean addAll(Collection collection, JsonConfig jsonConfig)
    • addAll

      public boolean addAll(int index, Collection collection)
      指定者:
      addAll 在接口中 List
    • addAll

      public boolean addAll(int index, Collection collection, JsonConfig jsonConfig)
    • clear

      public void clear()
      指定者:
      clear 在接口中 Collection
      指定者:
      clear 在接口中 List
    • compareTo

      public int compareTo(Object obj)
      指定者:
      compareTo 在接口中 Comparable
    • contains

      public boolean contains(Object o)
      指定者:
      contains 在接口中 Collection
      指定者:
      contains 在接口中 List
    • contains

      public boolean contains(Object o, JsonConfig jsonConfig)
    • containsAll

      public boolean containsAll(Collection collection)
      指定者:
      containsAll 在接口中 Collection
      指定者:
      containsAll 在接口中 List
    • containsAll

      public boolean containsAll(Collection collection, JsonConfig jsonConfig)
    • discard

      public JSONArray discard(int index)
      Remove an element, if present.
      参数:
      index - the index of the element.
      返回:
      this.
    • discard

      public JSONArray discard(Object o)
      Remove an element, if present.
      参数:
      index - the element.
      返回:
      this.
    • element

      public JSONArray element(boolean value)
      Append a boolean value. This increases the array's length by one.
      参数:
      value - A boolean value.
      返回:
      this.
    • element

      public JSONArray element(Collection value)
      Append a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.
      参数:
      value - A Collection value.
      返回:
      this.
    • element

      public JSONArray element(Collection value, JsonConfig jsonConfig)
      Append a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.
      参数:
      value - A Collection value.
      返回:
      this.
    • element

      public JSONArray element(double value)
      Append a double value. This increases the array's length by one.
      参数:
      value - A double value.
      返回:
      this.
      抛出:
      JSONException - if the value is not finite.
    • element

      public JSONArray element(int value)
      Append an int value. This increases the array's length by one.
      参数:
      value - An int value.
      返回:
      this.
    • element

      public JSONArray element(int index, boolean value)
      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.
      参数:
      index - The subscript.
      value - A boolean value.
      返回:
      this.
      抛出:
      JSONException - If the index is negative.
    • element

      public 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.
      参数:
      index - The subscript.
      value - A Collection value.
      返回:
      this.
      抛出:
      JSONException - If the index is negative or if the value is not finite.
    • element

      public JSONArray 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.
      参数:
      index - The subscript.
      value - A Collection value.
      返回:
      this.
      抛出:
      JSONException - If the index is negative or if the value is not finite.
    • element

      public JSONArray element(int index, double value)
      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.
      参数:
      index - The subscript.
      value - A double value.
      返回:
      this.
      抛出:
      JSONException - If the index is negative or if the value is not finite.
    • element

      public JSONArray element(int index, int value)
      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.
      参数:
      index - The subscript.
      value - An int value.
      返回:
      this.
      抛出:
      JSONException - If the index is negative.
    • element

      public JSONArray element(int index, long value)
      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.
      参数:
      index - The subscript.
      value - A long value.
      返回:
      this.
      抛出:
      JSONException - If the index is negative.
    • element

      public JSONArray element(int index, Map value)
      Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.
      参数:
      index - The subscript.
      value - The Map value.
      返回:
      this.
      抛出:
      JSONException - If the index is negative or if the the value is an invalid number.
    • element

      public JSONArray 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.
      参数:
      index - The subscript.
      value - The Map value.
      返回:
      this.
      抛出:
      JSONException - If the index is negative or if the the value is an invalid number.
    • element

      public JSONArray element(int index, Object value)
      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.
      参数:
      index - The subscript.
      value - An object value. The value should be a Boolean, Double, Integer, JSONArray, JSONObject, JSONFunction, Long, String, JSONString or the JSONNull object.
      返回:
      this.
      抛出:
      JSONException - If the index is negative or if the the value is an invalid number.
    • element

      public JSONArray element(int index, Object value, JsonConfig jsonConfig)
      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.
      参数:
      index - The subscript.
      value - An object value. The value should be a Boolean, Double, Integer, JSONArray, JSONObject, JSONFunction, Long, String, JSONString or the JSONNull object.
      返回:
      this.
      抛出:
      JSONException - If the index is negative or if the the value is an invalid number.
    • element

      public JSONArray element(int index, String value)
      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.
      参数:
      index - The subscript.
      value - A String value.
      返回:
      this.
      抛出:
      JSONException - If the index is negative or if the the value is an invalid number.
    • element

      public JSONArray element(int index, String value, JsonConfig jsonConfig)
      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.
      参数:
      index - The subscript.
      value - A String value.
      返回:
      this.
      抛出:
      JSONException - If the index is negative or if the the value is an invalid number.
    • element

      public JSONArray element(JSONNull value)
      Append an JSON value. This increases the array's length by one.
      参数:
      value - An JSON value.
      返回:
      this.
    • element

      public JSONArray element(JSONObject value)
      Append an JSON value. This increases the array's length by one.
      参数:
      value - An JSON value.
      返回:
      this.
    • element

      public JSONArray element(long value)
      Append an long value. This increases the array's length by one.
      参数:
      value - A long value.
      返回:
      this.
    • element

      public JSONArray element(Map value)
      Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.
      参数:
      value - A Map value.
      返回:
      this.
    • element

      public JSONArray element(Map value, JsonConfig jsonConfig)
      Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.
      参数:
      value - A Map value.
      返回:
      this.
    • element

      public JSONArray element(Object value)
      Append an object value. This increases the array's length by one.
      参数:
      value - An object value. The value should be a Boolean, Double, Integer, JSONArray, JSONObject, JSONFunction, Long, String, JSONString or the JSONNull object.
      返回:
      this.
    • element

      public JSONArray element(Object value, JsonConfig jsonConfig)
      Append an object value. This increases the array's length by one.
      参数:
      value - An object value. The value should be a Boolean, Double, Integer, JSONArray, JSONObject, JSONFunction, Long, String, JSONString or the JSONNull object.
      返回:
      this.
    • element

      public JSONArray element(String value)
      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.
      参数:
      value - A String value.
      返回:
      this.
    • element

      public JSONArray element(String value, JsonConfig jsonConfig)
      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.
      参数:
      value - A String value.
      返回:
      this.
    • equals

      public boolean equals(Object obj)
      指定者:
      equals 在接口中 Collection
      指定者:
      equals 在接口中 List
      覆盖:
      equals 在类中 Object
    • get

      public Object get(int index)
      Get the object value associated with an index.
      指定者:
      get 在接口中 List
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      An object value.
    • getBoolean

      public boolean getBoolean(int index)
      Get the boolean value associated with an index. The string values "true" and "false" are converted to boolean.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      The truth.
      抛出:
      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.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      The value.
      抛出:
      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.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      The value.
      抛出:
      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)
      Get the JSONArray associated with an index.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      A JSONArray value.
      抛出:
      JSONException - If there is no value for the index. or if the value is not a JSONArray
    • getJSONObject

      public JSONObject getJSONObject(int index)
      Get the JSONObject associated with an index.
      参数:
      index - subscript
      返回:
      A JSONObject value.
      抛出:
      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.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      The value.
      抛出:
      JSONException - If the key is not found or if the value cannot be converted to a number.
    • getString

      public String getString(int index)
      Get the string associated with an index.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      A string value.
      抛出:
      JSONException - If there is no value for the index.
    • hashCode

      public int hashCode()
      指定者:
      hashCode 在接口中 Collection
      指定者:
      hashCode 在接口中 List
      覆盖:
      hashCode 在类中 Object
    • indexOf

      public int indexOf(Object o)
      指定者:
      indexOf 在接口中 List
    • isArray

      public boolean isArray()
      从接口复制的说明: JSON
      Returns true if this object is a JSONArray, false otherwise.
      指定者:
      isArray 在接口中 JSON
    • isEmpty

      public boolean isEmpty()
      从接口复制的说明: JSON
      Returns true if this object has no elements or keys.
      指定者:
      isEmpty 在接口中 Collection
      指定者:
      isEmpty 在接口中 JSON
      指定者:
      isEmpty 在接口中 List
    • isExpandElements

      public boolean isExpandElements()
    • iterator

      public Iterator iterator()
      Returns an Iterator for this JSONArray
      指定者:
      iterator 在接口中 Collection
      指定者:
      iterator 在接口中 Iterable
      指定者:
      iterator 在接口中 List
    • join

      public String join(String separator)
      Make a string from the contents of this JSONArray. The 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.
      返回:
      a string.
      抛出:
      JSONException - If the array contains an invalid number.
    • join

      public String join(String separator, boolean stripQuotes)
      Make a string from the contents of this JSONArray. The 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.
      返回:
      a string.
      抛出:
      JSONException - If the array contains an invalid number.
    • lastIndexOf

      public int lastIndexOf(Object o)
      指定者:
      lastIndexOf 在接口中 List
    • listIterator

      public ListIterator listIterator()
      指定者:
      listIterator 在接口中 List
    • listIterator

      public ListIterator listIterator(int index)
      指定者:
      listIterator 在接口中 List
    • opt

      public Object opt(int index)
      Get the optional object value associated with an index.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      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".
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      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).
      参数:
      index - The index must be between 0 and size() - 1.
      defaultValue - A boolean default.
      返回:
      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.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      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.
      参数:
      index - subscript
      defaultValue - The default value.
      返回:
      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.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      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.
      参数:
      index - The index must be between 0 and size() - 1.
      defaultValue - The default value.
      返回:
      The value.
    • optJSONArray

      public JSONArray optJSONArray(int index)
      Get the optional JSONArray associated with an index.
      参数:
      index - subscript
      返回:
      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)
      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.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      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.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      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.
      参数:
      index - The index must be between 0 and size() - 1.
      defaultValue - The default value.
      返回:
      The value.
    • optString

      public String optString(int index)
      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.
      参数:
      index - The index must be between 0 and size() - 1.
      返回:
      A String value.
    • optString

      public String optString(int index, String defaultValue)
      Get the optional string associated with an index. The defaultValue is returned if the key is not found.
      参数:
      index - The index must be between 0 and size() - 1.
      defaultValue - The default value.
      返回:
      A String value.
    • remove

      public Object remove(int index)
      指定者:
      remove 在接口中 List
    • remove

      public boolean remove(Object o)
      指定者:
      remove 在接口中 Collection
      指定者:
      remove 在接口中 List
    • removeAll

      public boolean removeAll(Collection collection)
      指定者:
      removeAll 在接口中 Collection
      指定者:
      removeAll 在接口中 List
    • removeAll

      public boolean removeAll(Collection collection, JsonConfig jsonConfig)
    • retainAll

      public boolean retainAll(Collection collection)
      指定者:
      retainAll 在接口中 Collection
      指定者:
      retainAll 在接口中 List
    • retainAll

      public boolean retainAll(Collection collection, JsonConfig jsonConfig)
    • set

      public Object set(int index, Object value)
      指定者:
      set 在接口中 List
    • set

      public Object set(int index, Object value, JsonConfig jsonConfig)
    • setExpandElements

      public void setExpandElements(boolean expandElements)
    • size

      public int size()
      Get the number of elements in the JSONArray, included nulls.
      指定者:
      size 在接口中 Collection
      指定者:
      size 在接口中 JSON
      指定者:
      size 在接口中 List
      返回:
      The length (or size).
    • subList

      public List subList(int fromIndex, int toIndex)
      指定者:
      subList 在接口中 List
    • toArray

      public Object[] toArray()
      Produce an Object[] with the contents of this JSONArray.
      指定者:
      toArray 在接口中 Collection
      指定者:
      toArray 在接口中 List
    • toArray

      public Object[] toArray(Object[] array)
      指定者:
      toArray 在接口中 Collection
      指定者:
      toArray 在接口中 List
    • toJSONObject

      public JSONObject toJSONObject(JSONArray names)
      Produce a JSONObject by combining a JSONArray of names with the values of this JSONArray.
      参数:
      names - A JSONArray containing a list of key strings. These will be paired with the values.
      返回:
      A JSONObject, or null if there are no names or if this JSONArray has no values.
      抛出:
      JSONException - If any of the names are null.
    • toString

      public String 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 在类中 Object
      返回:
      a printable, displayable, transmittable representation of the array.
    • toJSONString

      public String toJSONString()
    • toString

      public String toString(int indentFactor)
      Make a prettyprinted JSON text of this JSONArray. Warning: This method assumes that the data structure is acyclical.
      指定者:
      toString 在接口中 JSON
      参数:
      indentFactor - The number of spaces to add to each level of indentation.
      返回:
      a printable, displayable, transmittable representation of the object, beginning with [ (left bracket) and ending with ] (right bracket).
      抛出:
      JSONException
    • toString

      public String toString(int indentFactor, int indent)
      Make a prettyprinted JSON text of this JSONArray. Warning: This method assumes that the data structure is acyclical.
      指定者:
      toString 在接口中 JSON
      参数:
      indentFactor - The number of spaces to add to each level of indentation.
      indent - The indention of the top level.
      返回:
      a printable, displayable, transmittable representation of the array.
      抛出:
      JSONException
    • write

      public Writer write(Writer writer)
      Write the contents of the JSONArray as JSON text to a writer. For compactness, no whitespace is added.

      Warning: This method assumes that the data structure is acyclical.

      指定者:
      write 在接口中 JSON
      返回:
      The writer.
      抛出:
      JSONException
    • addString

      protected JSONArray addString(String str)
      Adds a String without performing any conversion on it.
    • _processValue

      protected Object _processValue(Object value, JsonConfig jsonConfig)
      覆盖:
      _processValue 在类中 AbstractJSON