Uses of Interface
com.restfb.json.WriterConfig
-
Packages that use WriterConfig Package Description com.restfb.json Repackaging of the minimal-json implementation. -
-
Uses of WriterConfig in com.restfb.json
Classes in com.restfb.json that implement WriterConfig Modifier and Type Class Description class
PrettyPrint
Enables human readable JSON output by inserting whitespace between values.after commas and colons.Fields in com.restfb.json declared as WriterConfig Modifier and Type Field Description static WriterConfig
WriterConfig. MINIMAL
Write JSON in its minimal form, without any additional whitespace.static WriterConfig
WriterConfig. UNICODE
Write JSON in its minimal form, but escape almost all unicode signs; umlauts, smileys and more are escapedMethods in com.restfb.json with parameters of type WriterConfig Modifier and Type Method Description String
JsonValue. toString(WriterConfig config)
Returns the JSON string for this value using the given formatting.void
JsonValue. writeTo(Writer writer, WriterConfig config)
Writes the JSON representation of this value to the given writer using the given formatting.
-