Voglio convertire:
Map<String, Map<String, List<Map<String, String>>>> inputMap
per:
Map<String, Map<String, CustomObject>> customMap
inputMap
viene fornito nella configurazione ed è pronto ma devo customMap
formattarlo. CustomObject verrà derivato List<Map<String, String>>
dall'uso di poche righe di codice in una funzione.
Ho provato un modo normale di iterare la mappa di input e copiare i valori chiave in customMap. Esiste un modo efficace per farlo utilizzando Java 8 o qualche altro collegamento?
Map<String, Map<String, List<Map<String, String>>>> configuredMap = new HashMap<>();
Map<String, Map<String, CustomObj>> finalMap = new HashMap<>();
for (Map.Entry<String, Map<String, List<Map<String, String>>>> attributeEntry : configuredMap.entrySet()) {
Map<String, CustomObj> innerMap = new HashMap<>();
for (Map.Entry<String, List<Map<String, String>>> valueEntry : attributeEntry.getValue().entrySet()) {
innerMap.put(valueEntry.getKey(), getCustomeObj(valueEntry.getValue()));
}
finalMap.put(attributeEntry.getKey(), innerMap);
}
private CustomObj getCustomeObj(List<Map<String, String>> list) {
return new CustomObj();
}