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

/libcore/json/src/main/java/org/json/
H A DJSONObject.java31 * Values may be any mix of {@link JSONObject JSONObjects}, {@link JSONArray
55 * coerced, the sentinel value {@link JSONObject#NULL} is coerced to the
71 * JSONObject#NULL}. In particular, calling {@code put(name, null)} removes the
72 * named entry from the object but {@code put(name, JSONObject.NULL)} stores an
73 * entry whose value is {@code JSONObject.NULL}.
81 public class JSONObject { class
114 * Creates a {@code JSONObject} with no name/value mappings.
116 public JSONObject() { method in class:JSONObject
121 * Creates a new {@code JSONObject} by copying all name/value mappings from
129 public JSONObject(Ma method in class:JSONObject
154 public JSONObject(JSONTokener readFrom) throws JSONException { method in class:JSONObject
175 public JSONObject(String json) throws JSONException { method in class:JSONObject
184 public JSONObject(JSONObject copyFrom, String[] names) throws JSONException { method in class:JSONObject
[all...]

Completed in 56 milliseconds