java.lang.Object
io.ebean.text.json.EJson
Utility that converts between JSON content and simple java Maps/Lists.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Object
parse
(com.fasterxml.jackson.core.JsonParser parser) Parse the json and return as a List or Map.static Object
Parse the json and return as a List or Map.static Object
Parse the json and return as a List or Map.parseList
(com.fasterxml.jackson.core.JsonParser parser) Parse the json and return as a List taking a JsonParser.static <T> List<T>
parseList
(com.fasterxml.jackson.core.JsonParser parser, com.fasterxml.jackson.core.JsonToken currentToken) Parse the json returning as a List taking into account the current token.Parse the json and return as a List taking a Reader.Parse the json and return as a List.static <T> List<T>
Parse the json and return as a modify aware List.parseObject
(com.fasterxml.jackson.core.JsonParser parser) Parse the json and return as a Map taking a JsonParser.parseObject
(com.fasterxml.jackson.core.JsonParser parser, com.fasterxml.jackson.core.JsonToken token) Parse the json and return as a Map taking a JsonParser and a starting token.parseObject
(Reader reader) Parse the json and return as a Map taking a reader.parseObject
(Reader reader, boolean modifyAware) Parse the json and return as a Map taking a reader.parseObject
(String json) Parse the json and return as a Map.parseObject
(String json, boolean modifyAware) Parse the json and return as a Map additionally specifying if the returned map should be modify aware meaning that it can detect when it has been modified.static <T> Set<T>
parseSet
(com.fasterxml.jackson.core.JsonParser parser, com.fasterxml.jackson.core.JsonToken currentToken) Parse the json returning as a Set taking into account the current token.static <T> Set<T>
Parse the json returning a Set that might be modify aware.static String
Write the nested Map/List as json.static void
Write the nested Map/List as json to the jsonGenerator.static void
Write the nested Map/List as json to the writer.static void
writeCollection
(Collection<Object> collection, com.fasterxml.jackson.core.JsonGenerator jsonGenerator) Write the collection as json array to the jsonGenerator.
-
Constructor Details
-
EJson
public EJson()
-
-
Method Details
-
write
Write the nested Map/List as json.- Throws:
IOException
-
write
Write the nested Map/List as json to the writer.- Throws:
IOException
-
write
public static void write(Object object, com.fasterxml.jackson.core.JsonGenerator jsonGenerator) throws IOException Write the nested Map/List as json to the jsonGenerator.- Throws:
IOException
-
writeCollection
public static void writeCollection(Collection<Object> collection, com.fasterxml.jackson.core.JsonGenerator jsonGenerator) throws IOException Write the collection as json array to the jsonGenerator.- Throws:
IOException
-
parseObject
Parse the json and return as a Map additionally specifying if the returned map should be modify aware meaning that it can detect when it has been modified.- Throws:
IOException
-
parseObject
Parse the json and return as a Map.- Throws:
IOException
-
parseObject
Parse the json and return as a Map taking a reader.- Throws:
IOException
-
parseObject
Parse the json and return as a Map taking a reader.- Throws:
IOException
-
parseObject
public static Map<String,Object> parseObject(com.fasterxml.jackson.core.JsonParser parser) throws IOException Parse the json and return as a Map taking a JsonParser.- Throws:
IOException
-
parseObject
public static Map<String,Object> parseObject(com.fasterxml.jackson.core.JsonParser parser, com.fasterxml.jackson.core.JsonToken token) throws IOException Parse the json and return as a Map taking a JsonParser and a starting token.Used when the first token is checked to see if the value is null prior to calling this.
- Throws:
IOException
-
parseList
Parse the json and return as a modify aware List.- Throws:
IOException
-
parseList
Parse the json and return as a List.- Throws:
IOException
-
parseList
Parse the json and return as a List taking a Reader.- Throws:
IOException
-
parseList
public static List<Object> parseList(com.fasterxml.jackson.core.JsonParser parser) throws IOException Parse the json and return as a List taking a JsonParser.- Throws:
IOException
-
parseList
public static <T> List<T> parseList(com.fasterxml.jackson.core.JsonParser parser, com.fasterxml.jackson.core.JsonToken currentToken) throws IOException Parse the json returning as a List taking into account the current token.- Throws:
IOException
-
parse
Parse the json and return as a List or Map.- Throws:
IOException
-
parse
Parse the json and return as a List or Map.- Throws:
IOException
-
parse
Parse the json and return as a List or Map.- Throws:
IOException
-
parseSet
Parse the json returning a Set that might be modify aware.- Throws:
IOException
-
parseSet
public static <T> Set<T> parseSet(com.fasterxml.jackson.core.JsonParser parser, com.fasterxml.jackson.core.JsonToken currentToken) throws IOException Parse the json returning as a Set taking into account the current token.- Throws:
IOException
-