Uses of Class
io.ebean.text.json.JsonIOException
Packages that use JsonIOException
-
Uses of JsonIOException in io.ebean.text.json
Methods in io.ebean.text.json that throw JsonIOExceptionModifier and TypeMethodDescription<T> JsonBeanReader
<T> JsonContext.createBeanReader
(BeanType<T> beanType, com.fasterxml.jackson.core.JsonParser parser, JsonReadOptions options) Create and return a new bean reading for the bean type given the JSON options and source.<T> JsonBeanReader
<T> JsonContext.createBeanReader
(Class<T> cls, com.fasterxml.jackson.core.JsonParser parser, JsonReadOptions options) Create and return a new bean reading for the bean type given the JSON options and source.com.fasterxml.jackson.core.JsonGenerator
JsonContext.createGenerator
(Writer writer) Create and return a new JsonGenerator for the given writer.com.fasterxml.jackson.core.JsonParser
JsonContext.createParser
(Reader reader) Create and return a new JsonParser for the given reader.<T> T
Convert json parser input into a Bean of a specific type.<T> T
JsonContext.toBean
(Class<T> cls, com.fasterxml.jackson.core.JsonParser parser, JsonReadOptions options) Convert json parser input into a Bean of a specific type additionally using JsonReadOptions..<T> T
Convert json reader input into a Bean of a specific type.<T> T
JsonContext.toBean
(Class<T> rootType, Reader json, JsonReadOptions options) Convert json reader input into a Bean of a specific type additionally using JsonReadOptions.<T> T
Convert json string input into a Bean of a specific type.<T> T
JsonContext.toBean
(Class<T> rootType, String json, JsonReadOptions options) Convert json string input into a Bean of a specific type additionally using JsonReadOptions.<T> void
JsonContext.toBean
(T target, com.fasterxml.jackson.core.JsonParser parser) Read json parser input into a given Bean.<T> void
JsonContext.toBean
(T target, com.fasterxml.jackson.core.JsonParser parser, JsonReadOptions options) Read json parser input into a given Bean additionally using JsonReadOptions.
SeeJsonContext.toBean(Class, JsonParser)
for details modified.<T> void
Read json reader input into a given Bean.
SeeJsonContext.toBean(Class, JsonParser)
for details<T> void
JsonContext.toBean
(T target, Reader json, JsonReadOptions options) Read json reader input into a given Bean additionally using JsonReadOptions.
SeeJsonContext.toBean(Class, JsonParser)
for details modified.<T> void
Read json string input into a given Bean.
SeeJsonContext.toBean(Class, JsonParser)
for details<T> void
JsonContext.toBean
(T target, String json, JsonReadOptions options) Read json string input into a given Bean additionally using JsonReadOptions.
SeeJsonContext.toBean(Class, JsonParser)
for detailsReturn the bean or collection as JSON string.void
Write the bean or collection to the JsonGenerator.void
JsonContext.toJson
(Object value, com.fasterxml.jackson.core.JsonGenerator generator, FetchPath fetchPath) Write the bean or collection to the JsonGenerator using the FetchPath.void
JsonContext.toJson
(Object value, com.fasterxml.jackson.core.JsonGenerator generator, JsonWriteOptions options) Deprecated in favour of using PathProperties by itself.Return the bean or collection as JSON string using FetchPath.JsonContext.toJson
(Object value, JsonWriteOptions options) Deprecated in favour of using PathProperties by itself.void
Write the bean or collection in JSON format to the writer.void
Write the bean or collection as json to the writer using the FetchPath.void
JsonContext.toJson
(Object value, Writer writer, JsonWriteOptions options) Deprecated in favour of using PathProperties by itself.JsonContext.toJsonPretty
(Object value) Return the bean or collection as JSON string in pretty format.<T> List
<T> Convert json parser input into a list of beans of a specific type.<T> List
<T> JsonContext.toList
(Class<T> cls, com.fasterxml.jackson.core.JsonParser json, JsonReadOptions options) Convert json parser input into a list of beans of a specific type additionally using JsonReadOptions.<T> List
<T> Convert json reader input into a list of beans of a specific type.<T> List
<T> JsonContext.toList
(Class<T> rootType, Reader json, JsonReadOptions options) Convert json reader input into a list of beans of a specific type additionally using JsonReadOptions.<T> List
<T> Convert json string input into a list of beans of a specific type.<T> List
<T> JsonContext.toList
(Class<T> rootType, String json, JsonReadOptions options) Convert json string input into a list of beans of a specific type additionally using JsonReadOptions.Use the genericType to determine if this should be converted into a List or bean.Use the genericType to determine if this should be converted into a List or bean.Use the genericType to determine if this should be converted into a List or bean.