Eu quero traduzir uma lista de objetos em um mapa usando fluxos e lambdas do Java 8.
É assim que eu escreveria em Java 7 e abaixo.
private Map<String, Choice> nameMap(List<Choice> choices) {
final Map<String, Choice> hashMap = new HashMap<>();
for (final Choice choice : choices) {
hashMap.put(choice.getName(), choice);
}
return hashMap;
}
Posso fazer isso facilmente usando Java 8 e Guava, mas gostaria de saber como fazer isso sem o Guava.
Na goiaba:
private Map<String, Choice> nameMap(List<Choice> choices) {
return Maps.uniqueIndex(choices, new Function<Choice, String>() {
@Override
public String apply(final Choice input) {
return input.getName();
}
});
}
E Goiaba com Java 8 lambdas.
private Map<String, Choice> nameMap(List<Choice> choices) {
return Maps.uniqueIndex(choices, Choice::getName);
}
Maps.uniqueIndex(choices, Choice::getName)
.