Ich wollte Strom api auf mein Projekt Lightweight-Stream-API und RetroLambdaAndroid über Strom api
-Code verwenden: Ströme
Map<String, Object> liste = new HashMap<>();
for (Map.Entry<String, ?> data : tumListe.entrySet()) {
try{
if (data.getValue() != null) {
if(data.getValue() instanceof String){
try {
liste.put(data.getKey(), new Gson().fromJson(((String) data.getValue()), new TypeToken<List<String>>(){}.getType()));
}catch (JsonIOException ignored){
continue;
}catch (JsonParseException ignored){
continue;
}
}
liste.put(data.getKey(), data.getValue());
}
} catch (NullPointerException | ClassCastException ignored) {}
}
Wie kann ich Refactoring diesen Code beispielsweise verwenden Stream.of()
Methode?