- join(String) - Method in class org.json.me.JSONArray
-
Make a string from the contents of this JSONArray.
- JSONArray - Class in org.json.me
-
A JSONArray is an ordered sequence of values.
- JSONArray() - Constructor for class org.json.me.JSONArray
-
Construct an empty JSONArray.
- JSONArray(JSONTokener) - Constructor for class org.json.me.JSONArray
-
Construct a JSONArray from a JSONTokener.
- JSONArray(String) - Constructor for class org.json.me.JSONArray
-
Construct a JSONArray from a source sJSON text.
- JSONArray(Collection<?>) - Constructor for class org.json.me.JSONArray
-
Construct a JSONArray from a Collection.
- JSONException - Exception in org.json.me
-
The JSONException is thrown by the JSON.org classes when things are amiss.
- JSONException(String) - Constructor for exception org.json.me.JSONException
-
Constructs a JSONException with an explanatory message.
- JSONException(String, Throwable) - Constructor for exception org.json.me.JSONException
-
Constructs a JSONException with an explanatory message and cause.
- JSONException(Throwable) - Constructor for exception org.json.me.JSONException
-
Constructs a new JSONException with the specified cause.
- JSONObject - Class in org.json.me
-
A JSONObject is an unordered collection of name/value pairs.
- JSONObject() - Constructor for class org.json.me.JSONObject
-
Construct an empty JSONObject.
- JSONObject(JSONObject, String[]) - Constructor for class org.json.me.JSONObject
-
Construct a JSONObject from a subset of another JSONObject.
- JSONObject(JSONTokener) - Constructor for class org.json.me.JSONObject
-
Construct a JSONObject from a JSONTokener.
- JSONObject(Map<?, ?>) - Constructor for class org.json.me.JSONObject
-
Construct a JSONObject from a Map.
- JSONObject(String) - Constructor for class org.json.me.JSONObject
-
Construct a JSONObject from a string.
- JSONObject.Util - Class in org.json.me
-
- JSONString - Interface in org.json.me
-
The JSONString
interface allows a toJSONString()
method so that a class can change the
behavior of JSONObject.toString()
, JSONArray.toString()
, and
JSONWriter.value(
Object)
.
- JSONStringer - Class in org.json.me
-
JSONStringer provides a quick and convenient way of producing JSON text.
- JSONStringer() - Constructor for class org.json.me.JSONStringer
-
Make a fresh JSONStringer.
- JSONTokener - Class in org.json.me
-
A JSONTokener takes a source string and extracts characters and tokens from it.
- JSONTokener(Reader) - Constructor for class org.json.me.JSONTokener
-
Construct a JSONTokener from a Reader.
- JSONTokener(InputStream) - Constructor for class org.json.me.JSONTokener
-
Construct a JSONTokener from an InputStream.
- JSONTokener(String) - Constructor for class org.json.me.JSONTokener
-
Construct a JSONTokener from a string.
- JSONWriter - Class in org.json.me
-
JSONWriter provides a quick and convenient way of producing JSON text.
- JSONWriter(Appendable) - Constructor for class org.json.me.JSONWriter
-
Make a fresh JSONWriter.