Create a new JsonOutput object to produce a serialized JSON string in the specified Appendable. @param to Appendable that consumes a serialized JSON string @return JsonOutput object to product a JSON string in [to] @throws UncheckedIOException if an I/O exception occ
(Appendable to)
| 238 | * @throws UncheckedIOException if an I/O exception occurs |
| 239 | */ |
| 240 | public JsonOutput newOutput(Appendable to) throws UncheckedIOException { |
| 241 | return new JsonOutput(to); |
| 242 | } |
| 243 | } |
no outgoing calls