Java konvertieren die JSON -String in die Auflistung von Karten

Gson gson = new Gson();
Type resultType = new TypeToken<List<Map<String, Object>>>(){}.getType();
List<Map<String, Object>> result = gson.fromJson(json, resultType);
Magnificent Mongoose