| 
 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Uses of JSONException in org.json | 
|---|
| Methods in org.json that return JSONException | |
|---|---|
|  JSONException | JSONTokener.syntaxError(java.lang.String message)Returns an exception containing the given message plus the current position and the entire input string. | 
| Methods in org.json that throw JSONException | |
|---|---|
|  JSONObject | JSONObject.accumulate(java.lang.String name,
           java.lang.Object value)Appends valueto the array already mapped toname. | 
|  JSONStringer | JSONStringer.array()Begins encoding a new array. | 
|  JSONStringer | JSONStringer.endArray()Ends encoding the current array. | 
|  JSONStringer | JSONStringer.endObject()Ends encoding the current object. | 
|  java.lang.Object | JSONArray.get(int index)Returns the value at index. | 
|  java.lang.Object | JSONObject.get(java.lang.String name)Returns the value mapped by name. | 
|  boolean | JSONArray.getBoolean(int index)Returns the value at indexif it exists and is a boolean or can
 be coerced to a boolean. | 
|  boolean | JSONObject.getBoolean(java.lang.String name)Returns the value mapped by nameif it exists and is a boolean or
 can be coerced to a boolean. | 
|  double | JSONArray.getDouble(int index)Returns the value at indexif it exists and is a double or can
 be coerced to a double. | 
|  double | JSONObject.getDouble(java.lang.String name)Returns the value mapped by nameif it exists and is a double or
 can be coerced to a double. | 
|  int | JSONArray.getInt(int index)Returns the value at indexif it exists and is an int or
 can be coerced to an int. | 
|  int | JSONObject.getInt(java.lang.String name)Returns the value mapped by nameif it exists and is an int or
 can be coerced to an int. | 
|  JSONArray | JSONArray.getJSONArray(int index)Returns the value at indexif it exists and is aJSONArray. | 
|  JSONArray | JSONObject.getJSONArray(java.lang.String name)Returns the value mapped by nameif it exists and is aJSONArray. | 
|  JSONObject | JSONArray.getJSONObject(int index)Returns the value at indexif it exists and is aJSONObject. | 
|  JSONObject | JSONObject.getJSONObject(java.lang.String name)Returns the value mapped by nameif it exists and is aJSONObject. | 
|  long | JSONArray.getLong(int index)Returns the value at indexif it exists and is a long or
 can be coerced to a long. | 
|  long | JSONObject.getLong(java.lang.String name)Returns the value mapped by nameif it exists and is a long or
 can be coerced to a long. | 
|  java.lang.String | JSONArray.getString(int index)Returns the value at indexif it exists, coercing it if
 necessary. | 
|  java.lang.String | JSONObject.getString(java.lang.String name)Returns the value mapped by nameif it exists, coercing it if
 necessary. | 
|  java.lang.String | JSONArray.join(java.lang.String separator)Returns a new string by alternating this array's values with separator. | 
|  JSONStringer | JSONStringer.key(java.lang.String name)Encodes the key (property name) to this stringer. | 
|  char | JSONTokener.next(char c)Returns the next available character if it equals c. | 
|  java.lang.String | JSONTokener.next(int length)Returns the next lengthcharacters of the input. | 
|  char | JSONTokener.nextClean()Returns the next character that is not whitespace and does not belong to a comment. | 
|  java.lang.String | JSONTokener.nextString(char quote)Returns the string up to but not including quote, unescaping any
 character escape sequences encountered along the way. | 
|  java.lang.Object | JSONTokener.nextValue()Returns the next value from the input. | 
| static java.lang.String | JSONObject.numberToString(java.lang.Number number)Encodes the number as a JSON string. | 
|  JSONStringer | JSONStringer.object()Begins encoding a new object. | 
|  JSONArray | JSONArray.put(double value)Appends valueto the end of this array. | 
|  JSONArray | JSONArray.put(int index,
    boolean value)Sets the value at indextovalue, null padding this array
 to the required length if necessary. | 
|  JSONArray | JSONArray.put(int index,
    double value)Sets the value at indextovalue, null padding this array
 to the required length if necessary. | 
|  JSONArray | JSONArray.put(int index,
    int value)Sets the value at indextovalue, null padding this array
 to the required length if necessary. | 
|  JSONArray | JSONArray.put(int index,
    long value)Sets the value at indextovalue, null padding this array
 to the required length if necessary. | 
|  JSONArray | JSONArray.put(int index,
    java.lang.Object value)Sets the value at indextovalue, null padding this array
 to the required length if necessary. | 
|  JSONObject | JSONObject.put(java.lang.String name,
    boolean value)Maps nametovalue, clobbering any existing name/value
 mapping with the same name. | 
|  JSONObject | JSONObject.put(java.lang.String name,
    double value)Maps nametovalue, clobbering any existing name/value
 mapping with the same name. | 
|  JSONObject | JSONObject.put(java.lang.String name,
    int value)Maps nametovalue, clobbering any existing name/value
 mapping with the same name. | 
|  JSONObject | JSONObject.put(java.lang.String name,
    long value)Maps nametovalue, clobbering any existing name/value
 mapping with the same name. | 
|  JSONObject | JSONObject.put(java.lang.String name,
    java.lang.Object value)Maps nametovalue, clobbering any existing name/value
 mapping with the same name. | 
|  JSONObject | JSONObject.putOpt(java.lang.String name,
       java.lang.Object value)Equivalent to put(name, value)when both parameters are non-null;
 does nothing otherwise. | 
|  JSONArray | JSONObject.toJSONArray(JSONArray names)Returns an array with the values corresponding to names. | 
|  JSONObject | JSONArray.toJSONObject(JSONArray names)Returns a new object whose values are the values in this array, and whose names are the values in names. | 
|  java.lang.String | JSONArray.toString(int indentSpaces)Encodes this array as a human readable JSON string for debugging, such as: | 
|  java.lang.String | JSONObject.toString(int indentSpaces)Encodes this object as a human readable JSON string for debugging, such as: | 
|  JSONStringer | JSONStringer.value(boolean value)Encodes valueto this stringer. | 
|  JSONStringer | JSONStringer.value(double value)Encodes valueto this stringer. | 
|  JSONStringer | JSONStringer.value(long value)Encodes valueto this stringer. | 
|  JSONStringer | JSONStringer.value(java.lang.Object value)Encodes value. | 
| Constructors in org.json that throw JSONException | |
|---|---|
| JSONArray(JSONTokener readFrom)Creates a new JSONArraywith values from the next array in the
 tokener. | |
| JSONArray(java.lang.Object array)Creates a new JSONArraywith values from the given primitive array. | |
| JSONArray(java.lang.String json)Creates a new JSONArraywith values from the JSON string. | |
| JSONObject(JSONObject copyFrom,
           java.lang.String[] names)Creates a new JSONObjectby copying mappings for the listed names
 from the given object. | |
| JSONObject(JSONTokener readFrom)Creates a new JSONObjectwith name/value mappings from the next
 object in the tokener. | |
| JSONObject(java.lang.String json)Creates a new JSONObjectwith name/value mappings from the JSON
 string. | |
| 
 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||