Uses of Interface
net.sf.json.JSON
Packages that use JSON
-
Uses of JSON in net.sf.json
Classes in net.sf.json that implement JSONModifier and TypeClassDescriptionfinal classA JSONArray is an ordered sequence of values.final classJSONNull is equivalent to the value that JavaScript calls null, whilst Java's null is equivalent to the value that JavaScript calls undefined.final classA JSONObject is an unordered collection of name/value pairs.Methods in net.sf.json that return JSONModifier and TypeMethodDescriptionstatic JSONCreates a JSONObject, JSONArray or a JSONNull from object.
Accepts JSON formatted strings, Maps, arrays, Collections, DynaBeans and JavaBeans.static JSONJSONSerializer.toJSON(Object object, JsonConfig jsonConfig) Creates a JSONObject, JSONArray or a JSONNull from object.
Accepts JSON formatted strings, Maps, arrays, Collections, DynaBeans and JavaBeans.Methods in net.sf.json with parameters of type JSONModifier and TypeMethodDescriptionstatic ObjectTransform a JSON value to a java object.
Depending on the configured values for conversion this will return a DynaBean, a bean, a List, or and array.static ObjectJSONSerializer.toJava(JSON json, JsonConfig jsonConfig) Transform a JSON value to a java object.
Depending on the configured values for conversion this will return a DynaBean, a bean, a List, or and array.