* @throws JSONException
*/
public String toString(boolean prettyPrint) throws JSONException {
String json = super.toString();
if (prettyPrint) {
Object jsonObject = new JSONTokener(json).nextValue();
if (jsonObject instanceof JSONObject) {
return ((JSONObject) jsonObject).toString(3);
}
if (jsonObject instanceof JSONArray) {
return ((JSONArray) jsonObject).toString(3);