Class BasicJsonParser

  • All Implemented Interfaces:
    JsonParser

    public class BasicJsonParser
    extends AbstractJsonParser
    Really basic JSON parser for when you have nothing else available. Comes with some limitations with respect to the JSON specification (e.g. only supports String values), so users will probably prefer to have a library handle things instead (Jackson or Snake YAML are supported).
    Since:
    1.2.0
    See Also:
    JsonParserFactory
    • 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