Sé cómo "transformar" un Java simple Listde Y-> Z, es decir: List<String> x; List<Integer> y = x.stream() .map(s -> Integer.parseInt(s)) .collect(Collectors.toList()); Ahora me gustaría hacer básicamente lo mismo con un mapa, es decir: INPUT: { "key1" -> "41", // "41" and...