Eu sei como "transformar" um Java simples Listde Y-> Z, ou seja: List<String> x; List<Integer> y = x.stream() .map(s -> Integer.parseInt(s)) .collect(Collectors.toList()); Agora eu gostaria de fazer basicamente o mesmo com um mapa, ou seja: INPUT: { "key1" -> "41", //...