Uses of Class
processing.data.JSONObject
-
Packages that use JSONObject Package Description processing.core processing.data -
-
Uses of JSONObject in processing.core
Methods in processing.core that return JSONObject Modifier and Type Method Description static JSONObjectPApplet. loadJSONObject(File file)JSONObjectPApplet. loadJSONObject(String filename)JSONObjectPApplet. parseJSONObject(String input)Methods in processing.core with parameters of type JSONObject Modifier and Type Method Description booleanPApplet. saveJSONObject(JSONObject json, String filename)booleanPApplet. saveJSONObject(JSONObject json, String filename, String options) -
Uses of JSONObject in processing.data
Methods in processing.data that return JSONObject Modifier and Type Method Description JSONObjectJSONArray. getJSONObject(int index)Get the JSONObject associated with an index.JSONObjectJSONArray. getJSONObject(int index, JSONObject defaultValue)JSONObjectJSONObject. getJSONObject(String key)Get the JSONObject value associated with a key.static JSONObjectJSONObject. parse(String source)Construct a JSONObject from a source JSON text string.JSONObjectJSONObject. put(String key, Object value)Put a key/value pair in the JSONObject.JSONObjectJSONObject. setBoolean(String key, boolean value)Put a key/boolean pair in the JSONObject.JSONObjectJSONObject. setDouble(String key, double value)Put a key/double pair in the JSONObject.JSONObjectJSONObject. setFloat(String key, float value)JSONObjectJSONObject. setInt(String key, int value)Put a key/int pair in the JSONObject.JSONObjectJSONObject. setJSONArray(String key, JSONArray value)JSONObjectJSONObject. setJSONObject(String key, JSONObject value)JSONObjectJSONObject. setLong(String key, long value)Put a key/long pair in the JSONObject.JSONObjectJSONObject. setString(String key, String value)Methods in processing.data with parameters of type JSONObject Modifier and Type Method Description JSONArrayJSONArray. append(JSONObject value)JSONObjectJSONArray. getJSONObject(int index, JSONObject defaultValue)JSONArrayJSONArray. setJSONObject(int index, JSONObject value)JSONObjectJSONObject. setJSONObject(String key, JSONObject value)
-