Package org.springframework.boot.json
Class GsonJsonParser
java.lang.Object
org.springframework.boot.json.AbstractJsonParser
org.springframework.boot.json.GsonJsonParser
- All Implemented Interfaces:
JsonParser
Thin wrapper to adapt
Gson
to a JsonParser
.- Since:
- 1.2.0
- Author:
- Dave Syer, Jean de Klerk
- See Also:
-
Constructor Summary
-
Method Summary
Methods inherited from class org.springframework.boot.json.AbstractJsonParser
parseList, parseMap, trimParse, tryParse
-
Constructor Details
-
GsonJsonParser
public GsonJsonParser()
-
-
Method Details
-
parseMap
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
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
-