Uses of Class
net.sf.json.util.JSONBuilder
-
Packages that use JSONBuilder Package Description net.sf.json.util Miscelaneous utilities -
-
Uses of JSONBuilder in net.sf.json.util
Subclasses of JSONBuilder in net.sf.json.util Modifier and Type Class Description classJSONStringerJSONStringer provides a quick and convenient way of producing JSON text.Methods in net.sf.json.util that return JSONBuilder Modifier and Type Method Description private JSONBuilderJSONBuilder. append(java.lang.String s)Append a value.JSONBuilderJSONBuilder. array()Begin appending a new array.private JSONBuilderJSONBuilder. end(char m, char c)End something.JSONBuilderJSONBuilder. endArray()End an array.JSONBuilderJSONBuilder. endObject()End an object.JSONBuilderJSONBuilder. key(java.lang.String s)Append a key.JSONBuilderJSONBuilder. object()Begin appending a new object.JSONBuilderJSONBuilder. value(boolean b)Append either the valuetrueor the valuefalse.JSONBuilderJSONBuilder. value(double d)Append a double value.JSONBuilderJSONBuilder. value(long l)Append a long value.JSONBuilderJSONBuilder. value(java.lang.Object o)Append an object value.
-