Uses of Class
org.json.JSONArray

  • Uses of JSONArray in org.json

    Methods in org.json that return JSONArray
    Modifier and Type
    Method
    Description
    JSONArray.getJSONArray(int index)
    Returns the value at index if it exists and is a JSONArray.
    JSONObject.getJSONArray(String name)
    Returns the value mapped by name if it exists and is a JSONArray.
    JSONObject.names()
    Returns an array containing the string names in this object.
    JSONArray.optJSONArray(int index)
    Returns the value at index if it exists and is a JSONArray.
    JSONObject.optJSONArray(String name)
    Returns the value mapped by name if it exists and is a JSONArray.
    JSONArray.put(boolean value)
    Appends value to the end of this array.
    JSONArray.put(double value)
    Appends value to the end of this array.
    JSONArray.put(int value)
    Appends value to the end of this array.
    JSONArray.put(int index, boolean value)
    Sets the value at index to value, null padding this array to the required length if necessary.
    JSONArray.put(int index, double value)
    Sets the value at index to value, null padding this array to the required length if necessary.
    JSONArray.put(int index, int value)
    Sets the value at index to value, null padding this array to the required length if necessary.
    JSONArray.put(int index, long value)
    Sets the value at index to value, null padding this array to the required length if necessary.
    JSONArray.put(int index, Object value)
    Sets the value at index to value, null padding this array to the required length if necessary.
    JSONArray.put(long value)
    Appends value to the end of this array.
    JSONArray.put(Object value)
    Appends value to the end of this array.
    JSONObject.toJSONArray(JSONArray names)
    Returns an array with the values corresponding to names.
    Methods in org.json with parameters of type JSONArray
    Modifier and Type
    Method
    Description
    JSONObject.toJSONArray(JSONArray names)
    Returns an array with the values corresponding to names.
    JSONArray.toJSONObject(JSONArray names)
    Returns a new object whose values are the values in this array, and whose names are the values in names.