Uses of Interface
io.avaje.jsonb.JsonWriter
-
Packages that use JsonWriter Package Description io.avaje.jsonb Core API of Jsonb.io.avaje.jsonb.spi SPI for the underlying json parsing and generation.io.avaje.jsonb.stream Default stream handling provided with Jsonb. -
-
Uses of JsonWriter in io.avaje.jsonb
Methods in io.avaje.jsonb that return JsonWriter Modifier and Type Method Description JsonWriterJsonb. writer(OutputStream outputStream)Return the JsonWriter used to write json to the given outputStream.JsonWriterJsonb. writer(Writer writer)Return the JsonWriter used to write json to the given writer.Methods in io.avaje.jsonb with parameters of type JsonWriter Modifier and Type Method Description abstract voidJsonAdapter. toJson(JsonWriter writer, T value)Write the value to the writer.voidJsonView. toJson(T value, JsonWriter writer)Write to the given writer. -
Uses of JsonWriter in io.avaje.jsonb.spi
Subinterfaces of JsonWriter in io.avaje.jsonb.spi Modifier and Type Interface Description interfaceBufferedJsonWriterProvides a JsonWriter optimised for returning json as string content.interfaceBytesJsonWriterJsonWriter optimised for returning json as byte array.Classes in io.avaje.jsonb.spi that implement JsonWriter Modifier and Type Class Description classDelegateJsonWriterProvides a delegating JsonWriter.Methods in io.avaje.jsonb.spi that return JsonWriter Modifier and Type Method Description JsonWriterJsonStreamAdapter. writer(OutputStream outputStream)Return the JsonWriter given the outputStream.JsonWriterJsonStreamAdapter. writer(Writer writer)Return the JsonWriter given writer to use.Constructors in io.avaje.jsonb.spi with parameters of type JsonWriter Constructor Description DelegateJsonWriter(JsonWriter delegate) -
Uses of JsonWriter in io.avaje.jsonb.stream
Methods in io.avaje.jsonb.stream that return JsonWriter Modifier and Type Method Description JsonWriterJsonStream. writer(OutputStream outputStream)JsonWriterJsonStream. writer(Writer writer)
-