toggle menu
Spring Boot Kotlin API
3.4.4
jvm
switch theme
search in API
spring-boot
/
org.springframework.boot.json
/
JsonParser
Json
Parser
interface
JsonParser
Parser that can read JSON formatted strings into
Map
s or
List
s.
Author
Dave Syer
Since
1.0.0
See also
Json
Parser
Factory
Basic
Json
Parser
Jackson
Json
Parser
Gson
Json
Parser
Inheritors
AbstractJsonParser
Members
Functions
parse
List
Link copied to clipboard
abstract
fun
parseList
(
json
:
String
)
:
List
<
Any
>
Parse the specified JSON string into a List.
parse
Map
Link copied to clipboard
abstract
fun
parseMap
(
json
:
String
)
:
Map
<
String
,
Any
>
Parse the specified JSON string into a Map.