Uses of Interface
io.avaje.jsonb.JsonReader
-
Packages that use JsonReader 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 JsonReader in io.avaje.jsonb
Methods in io.avaje.jsonb that return JsonReader Modifier and Type Method Description JsonReader
Jsonb. reader(byte[] jsonBytes)
Return the JsonReader used to read the given json content in bytes.JsonReader
Jsonb. reader(InputStream inputStream)
Return the JsonReader used to read the json content from the given inputStream.JsonReader
Jsonb. reader(Reader reader)
Return the JsonReader used to read the json content from the given reader.JsonReader
Jsonb. reader(String json)
Return the JsonReader used to read the given json content.default JsonReader
JsonReader. streamArray(boolean streamArray)
Explicitly state if the streaming content contains ARRAY '[' and ']' tokens.Methods in io.avaje.jsonb with parameters of type JsonReader Modifier and Type Method Description abstract T
JsonAdapter. fromJson(JsonReader reader)
Read the type from the reader.T
JsonType. fromJson(JsonReader reader)
Read the return the value from the reader.Stream<T>
JsonType. stream(JsonReader reader)
Return as a Stream that will read the content as the stream is processed. -
Uses of JsonReader in io.avaje.jsonb.spi
Methods in io.avaje.jsonb.spi that return JsonReader Modifier and Type Method Description JsonReader
JsonStreamAdapter. reader(byte[] json)
Return the JsonReader given json content as bytes.JsonReader
JsonStreamAdapter. reader(InputStream inputStream)
Return the JsonReader given json string content.JsonReader
JsonStreamAdapter. reader(Reader reader)
Return the JsonReader given json string content.JsonReader
JsonStreamAdapter. reader(String json)
Return the JsonReader given json string content. -
Uses of JsonReader in io.avaje.jsonb.stream
Methods in io.avaje.jsonb.stream that return JsonReader Modifier and Type Method Description JsonReader
JsonStream. reader(byte[] json)
JsonReader
JsonStream. reader(InputStream inputStream)
JsonReader
JsonStream. reader(Reader reader)
JsonReader
JsonStream. reader(String json)
-