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)
| 231 | * @throws UncheckedIOException if an I/O exception occurs |
| 232 | */ |
| 233 | public JsonOutput newOutput(Appendable to) throws UncheckedIOException { |
| 234 | return new JsonOutput(to); |
| 235 | } |
| 236 | } |
no outgoing calls