Class JacksonJsonParser

    • Constructor Detail

      • JacksonJsonParser

        public JacksonJsonParser​(com.fasterxml.jackson.databind.ObjectMapper objectMapper)
        Creates an instance with the specified ObjectMapper.
        Parameters:
        objectMapper - the object mapper to use
      • JacksonJsonParser

        public JacksonJsonParser()
        Creates an instance with a default ObjectMapper that is created lazily.
    • Method Detail

      • parseMap

        public Map<String,​ObjectparseMap​(String json)
        Description copied from interface: JsonParser
        Parse the specified JSON string into a Map.
        Parameters:
        json - the JSON to parse
        Returns:
        the parsed JSON as a map
      • parseList

        public List<ObjectparseList​(String json)
        Description copied from interface: JsonParser
        Parse the specified JSON string into a List.
        Parameters:
        json - the JSON to parse
        Returns:
        the parsed JSON as a list