Interface JsonParser


public interface JsonParser
Parse JSON input and return Map.
  • Method Summary

    Modifier and Type
    Method
    Description
    Read and deserialize JSON content from the given Reader.
  • Method Details

    • readObject

      Map<String,Object> readObject(Reader reader)
      Read and deserialize JSON content from the given Reader.

      The JSON content is expected to represent a JSON object and will be converted into a Map where:

      Parameters:
      reader - the reader containing JSON content (must not be null)
      Returns:
      the parsed JSON object as a Map