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 JsonReaderJsonb. reader(byte[] jsonBytes)Return the JsonReader used to read the given json content in bytes.JsonReaderJsonb. reader(InputStream inputStream)Return the JsonReader used to read the json content from the given inputStream.JsonReaderJsonb. reader(Reader reader)Return the JsonReader used to read the json content from the given reader.JsonReaderJsonb. reader(String json)Return the JsonReader used to read the given json content.Methods in io.avaje.jsonb with parameters of type JsonReader Modifier and Type Method Description abstract TJsonAdapter. fromJson(JsonReader reader)Read the type from the reader.TJsonType. fromJson(JsonReader reader)Read the return the value from the reader. -
Uses of JsonReader in io.avaje.jsonb.spi
Methods in io.avaje.jsonb.spi that return JsonReader Modifier and Type Method Description JsonReaderJsonStreamAdapter. reader(byte[] json)Return the JsonReader given json content as bytes.JsonReaderJsonStreamAdapter. reader(InputStream inputStream)Return the JsonReader given json string content.JsonReaderJsonStreamAdapter. reader(Reader reader)Return the JsonReader given json string content.JsonReaderJsonStreamAdapter. 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 JsonReaderJsonStream. reader(byte[] json)JsonReaderJsonStream. reader(InputStream inputStream)JsonReaderJsonStream. reader(Reader reader)JsonReaderJsonStream. reader(String json)
-