Quiero convertir:
Map<String, Map<String, List<Map<String, String>>>> inputMap
a:
Map<String, Map<String, CustomObject>> customMap
inputMap
se proporciona en la configuración y está listo, pero necesito customMap
formatear. CustomObject se derivará del List<Map<String, String>>
uso de pocas líneas de código en una función.
He intentado una forma normal de iterar el mapa de entrada y copiar valores clave en customMap. ¿Hay alguna manera eficiente de hacerlo usando Java 8 o algún otro atajo?
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();
}