Uses of Class
io.ebean.text.json.JsonIOException
| Package | Description |
|---|---|
| io.ebean.text.json |
JSON formatting and parsing objects (See JsonContext).
|
-
Uses of JsonIOException in io.ebean.text.json
Methods in io.ebean.text.json that throw JsonIOException Modifier and Type Method Description <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.JsonGeneratorJsonContext. createGenerator(Writer writer)Create and return a new JsonGenerator for the given writer.com.fasterxml.jackson.core.JsonParserJsonContext. createParser(Reader reader)Create and return a new JsonParser for the given reader.<T> TJsonContext. toBean(Class<T> cls, com.fasterxml.jackson.core.JsonParser parser)Convert json parser input into a Bean of a specific type.<T> TJsonContext. 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> TJsonContext. toBean(Class<T> rootType, Reader json)Convert json reader input into a Bean of a specific type.<T> TJsonContext. toBean(Class<T> rootType, Reader json, JsonReadOptions options)Convert json reader input into a Bean of a specific type additionally using JsonReadOptions.<T> TJsonContext. toBean(Class<T> rootType, String json)Convert json string input into a Bean of a specific type.<T> TJsonContext. toBean(Class<T> rootType, String json, JsonReadOptions options)Convert json string input into a Bean of a specific type additionally using JsonReadOptions.StringJsonContext. toJson(Object value)Return the bean or collection as JSON string.voidJsonContext. toJson(Object value, com.fasterxml.jackson.core.JsonGenerator generator)Write the bean or collection to the JsonGenerator.voidJsonContext. toJson(Object value, com.fasterxml.jackson.core.JsonGenerator generator, FetchPath fetchPath)Write the bean or collection to the JsonGenerator using the FetchPath.voidJsonContext. toJson(Object value, com.fasterxml.jackson.core.JsonGenerator generator, JsonWriteOptions options)Deprecated in favour of using PathProperties by itself.StringJsonContext. toJson(Object value, FetchPath fetchPath)Return the bean or collection as JSON string using FetchPath.StringJsonContext. toJson(Object value, JsonWriteOptions options)Deprecated in favour of using PathProperties by itself.voidJsonContext. toJson(Object value, Writer writer)Write the bean or collection in JSON format to the writer.voidJsonContext. toJson(Object value, Writer writer, FetchPath fetchPath)Write the bean or collection as json to the writer using the FetchPath.voidJsonContext. toJson(Object value, Writer writer, JsonWriteOptions options)Deprecated in favour of using PathProperties by itself.StringJsonContext. toJsonPretty(Object value)Return the bean or collection as JSON string in pretty format.<T> List<T>JsonContext. toList(Class<T> cls, com.fasterxml.jackson.core.JsonParser json)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>JsonContext. toList(Class<T> rootType, Reader json)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>JsonContext. toList(Class<T> rootType, String json)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.ObjectJsonContext. toObject(Type genericType, com.fasterxml.jackson.core.JsonParser jsonParser)Use the genericType to determine if this should be converted into a List or bean.ObjectJsonContext. toObject(Type genericType, Reader json)Use the genericType to determine if this should be converted into a List or bean.ObjectJsonContext. toObject(Type genericType, String json)Use the genericType to determine if this should be converted into a List or bean.