EZ JSON
by Nathanaël Cottin

Uses of Class
org.ezjson.JSONObject

Uses of JSONObject in org.ezjson
 

Methods in org.ezjson that return JSONObject
static JSONObject JSONDecoder.decode(java.io.BufferedReader in)
          Generates a JSON object from a source stream
 

Methods in org.ezjson with parameters of type JSONObject
static void JSONEncoder.encode(JSONObject obj, java.io.PrintWriter out)
          Serializes a JSON object to a destination writer using the most compact format.
static void JSONEncoder.encodePretty(JSONObject obj, char spacer, java.io.PrintWriter out)
          Serializes a JSON object using a human-readble encoding (which includes a pretty indentation) with no initial indentation
static void JSONEncoder.encodePretty(JSONObject obj, int offset, char spacer, java.io.PrintWriter out)
          Serializes a JSON object using a human-readble encoding (which includes a pretty indentation) with an initial indentation.
 


EZ JSON
by Nathanaël Cottin