JSON TO HASHMAP Java Stream

Map<String, Object> retMap = new Gson().fromJson(
    jsonString, new TypeToken<HashMap<String, Object>>() {}.getType()
);
Blushing Buffalo