Uses of Class
net.minidev.json.JSONStyle

Packages that use JSONStyle
net.minidev.json   
net.minidev.json.parser   
 

Uses of JSONStyle in net.minidev.json
 

Subclasses of JSONStyle in net.minidev.json
 class JSONStyler
          This class is used to format JSon output, fot a better humain readability
 

Fields in net.minidev.json declared as JSONStyle
static JSONStyle JSONValue.COMPRESSION
          Global default compression type
static JSONStyle JSONStyle.MAX_COMPRESS
           
static JSONStyle JSONStyle.NO_COMPRESS
           
 

Methods in net.minidev.json with parameters of type JSONStyle
static String JSONValue.compress(String input, JSONStyle style)
          Reformat Json input keeping element order
static void JSONValue.escape(String s, Appendable ap, JSONStyle compression)
           
static String JSONValue.escape(String s, JSONStyle compression)
          Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).
 String JSONAwareEx.toJSONString(JSONStyle compression)
           
 String JSONArray.toJSONString(JSONStyle compression)
           
 String JSONObject.toJSONString(JSONStyle compression)
           
static String JSONArray.toJSONString(List<Object> list, JSONStyle compression)
          Convert a list to JSON text.
static String JSONObject.toJSONString(Map<String,Object> map, JSONStyle compression)
          Convert a map to JSON text.
static String JSONValue.toJSONString(Object value, JSONStyle compression)
          Convert an object to JSON text.
 String JSONArray.toString(JSONStyle compression)
          JSONAwareEx inferface
 String JSONObject.toString(JSONStyle compression)
           
static String JSONObject.toString(String key, Object value, JSONStyle compression)
           
 void JSONStreamAwareEx.writeJSONString(Appendable out, JSONStyle compression)
          write JSON string to out.
 void JSONArray.writeJSONString(Appendable out, JSONStyle compression)
           
 void JSONObject.writeJSONString(Appendable out, JSONStyle compression)
          serialize Object as json to an stream
static void JSONArray.writeJSONString(List<Object> list, Appendable out, JSONStyle compression)
          Encode a list into JSON text and write it to out.
static void JSONObject.writeJSONString(Map<String,Object> map, Appendable out, JSONStyle compression)
          Encode a map into JSON text and write it to out.
static void JSONValue.writeJSONString(Object value, Appendable out, JSONStyle compression)
          Encode an object into JSON text and write it to out.
 

Uses of JSONStyle in net.minidev.json.parser
 

Constructors in net.minidev.json.parser with parameters of type JSONStyle
ContentHandlerCompressor(Appendable out, JSONStyle compression)
           
 



Copyright © 2011 Chemouni Uriel. All Rights Reserved.