JsonParser

interface JsonParser

Parser that can read JSON formatted strings into Maps or Lists.

Author

Dave Syer

Since

1.0.0

See also

Inheritors

Functions

Link copied to clipboard
abstract fun parseList(json: String): List<Any>
Parse the specified JSON string into a List.
Link copied to clipboard
abstract fun parseMap(json: String): Map<String, Any>
Parse the specified JSON string into a Map.