Chcę przekonwertować:
Map<String, Map<String, List<Map<String, String>>>> inputMap
do:
Map<String, Map<String, CustomObject>> customMap
inputMap
jest podany w konfiguracji i jest gotowy, ale muszę customMap
sformatować. CustomObject zostanie wyprowadzony z List<Map<String, String>>
użycia kilku wierszy kodu w funkcji.
Próbowałem normalnego sposobu iteracji mapy wejściowej i kopiowania kluczowych wartości w customMap. Czy jest jakiś skuteczny sposób, aby to zrobić za pomocą Java 8 lub innego skrótu?
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();
}