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 JsonWriter
Jsonb. writer(OutputStream outputStream)
Return the JsonWriter used to write json to the given outputStream.JsonWriter
Jsonb. 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 void
JsonAdapter. toJson(JsonWriter writer, T value)
Write the value to the writer.void
Jsonb. toJson(Object any, JsonWriter jsonWriter)
Write to the given writer.void
JsonView. 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 interface
BufferedJsonWriter
Provides a JsonWriter optimised for returning json as string content.interface
BytesJsonWriter
JsonWriter optimised for returning json as byte array.Classes in io.avaje.jsonb.spi that implement JsonWriter Modifier and Type Class Description class
DelegateJsonWriter
Provides a delegating JsonWriter.Fields in io.avaje.jsonb.spi declared as JsonWriter Modifier and Type Field Description protected JsonWriter
DelegateJsonWriter. delegate
Methods in io.avaje.jsonb.spi that return JsonWriter Modifier and Type Method Description JsonWriter
JsonStreamAdapter. writer(OutputStream outputStream)
Return the JsonWriter given the outputStream.JsonWriter
JsonStreamAdapter. 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 JsonWriter
JsonStream. writer(OutputStream outputStream)
JsonWriter
JsonStream. writer(Writer writer)
-