Class EJson


  • public class EJson
    extends Object
    Utility that converts between JSON content and simple java Maps/Lists.
    • Constructor Summary

      Constructors 
      Constructor Description
      EJson()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static Object parse​(com.fasterxml.jackson.core.JsonParser parser)
      Parse the json and return as a List or Map.
      static Object parse​(Reader reader)
      Parse the json and return as a List or Map.
      static Object parse​(String json)
      Parse the json and return as a List or Map.
      static List<Object> 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.
      static List<Object> parseList​(Reader reader)
      Parse the json and return as a List taking a Reader.
      static List<Object> parseList​(String json)
      Parse the json and return as a List.
      static <T> List<T> parseList​(String json, boolean modifyAware)
      Parse the json and return as a modify aware List.
      static Map<String,​Object> parseObject​(com.fasterxml.jackson.core.JsonParser parser)
      Parse the json and return as a Map taking a JsonParser.
      static Map<String,​Object> 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.
      static Map<String,​Object> parseObject​(Reader reader)
      Parse the json and return as a Map taking a reader.
      static Map<String,​Object> parseObject​(Reader reader, boolean modifyAware)
      Parse the json and return as a Map taking a reader.
      static Map<String,​Object> parseObject​(String json)
      Parse the json and return as a Map.
      static Map<String,​Object> 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> parseSet​(String json, boolean modifyAware)
      Parse the json returning a Set that might be modify aware.
      static String write​(Object object)
      Write the nested Map/List as json.
      static void write​(Object object, com.fasterxml.jackson.core.JsonGenerator jsonGenerator)
      Write the nested Map/List as json to the jsonGenerator.
      static void write​(Object object, Writer writer)
      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.