Searched defs:JSONObject (Results 1 - 1 of 1) sorted by relevance

/libcore/json/src/main/java/org/json/
H A DJSONObject.java30 * Values may be any mix of {@link JSONObject JSONObjects}, {@link JSONArray
54 * coerced, the sentinel value {@link JSONObject#NULL} is coerced to the
70 * JSONObject#NULL}. In particular, calling {@code put(name, null)} removes the
71 * named entry from the object but {@code put(name, JSONObject.NULL)} stores an
72 * entry whose value is {@code JSONObject.NULL}.
80 public class JSONObject { class
111 * Creates a {@code JSONObject} with no name/value mappings.
113 public JSONObject() { method in class:JSONObject
118 * Creates a new {@code JSONObject} by copying all name/value mappings from
126 public JSONObject(Ma method in class:JSONObject
151 public JSONObject(JSONTokener readFrom) throws JSONException { method in class:JSONObject
172 public JSONObject(String json) throws JSONException { method in class:JSONObject
181 public JSONObject(JSONObject copyFrom, String[] names) throws JSONException { method in class:JSONObject
[all...]

Completed in 30 milliseconds