Uses of Class
org.codehaus.jettison.json.JSONWriter
-
Packages that use JSONWriter Package Description org.codehaus.jettison.json -
-
Uses of JSONWriter in org.codehaus.jettison.json
Subclasses of JSONWriter in org.codehaus.jettison.json Modifier and Type Class Description class
JSONStringer
JSONStringer provides a quick and convenient way of producing JSON text.Methods in org.codehaus.jettison.json that return JSONWriter Modifier and Type Method Description JSONWriter
JSONWriter. array()
Begin appending a new array.JSONWriter
JSONWriter. endArray()
End an array.JSONWriter
JSONWriter. endObject()
End an object.JSONWriter
JSONWriter. key(String s)
Append a key.JSONWriter
JSONWriter. object()
Begin appending a new object.JSONWriter
JSONWriter. value(boolean b)
Append either the valuetrue
or the valuefalse
.JSONWriter
JSONWriter. value(double d)
Append a double value.JSONWriter
JSONWriter. value(long l)
Append a long value.JSONWriter
JSONWriter. value(Object o)
Append an object value.
-