EZ JSON
by Nathanaël Cottin

Uses of Class
org.ezjson.JSONDecodingException

Uses of JSONDecodingException in org.ezjson
 

Methods in org.ezjson that throw JSONDecodingException
static JSONObject JSONDecoder.decode(java.io.BufferedReader in)
          Generates a JSON object from a source stream
static JSONBoolean JSONDecoder.getAsBoolean(JSONValue value)
          Attempts to get a JSON boolean from any JSON value (usually a JSON string) when the actual type of this JSON value is unknown.
static JSONInteger JSONDecoder.getAsInteger(JSONValue value)
          Attempts to get a JSON integer from any JSON value (usually a JSON string) when the actual type of this JSON value is unknown.
static JSONNumber JSONDecoder.getAsNumber(JSONValue value)
          Attempts to get a JSON number from any JSON value (usually a JSON string) when the actual type of this JSON value is unknown.
static JSONReal JSONDecoder.getAsReal(JSONValue value)
          Attempts to get a JSON real from any JSON value (usually a JSON string or a JSON integer) when the actual type of this JSON value is unknown.
 


EZ JSON
by Nathanaël Cottin