Ich möchte eine Liste von Objekten in eine Map mit Java 8 Streams und Lambdas übersetzen.
So würde ich es in Java 7 und darunter schreiben.
private Map nameMap(List choices) {
final Map hashMap = new HashMap<>();
for (final Choice choice : choices) {
hashMap.put(choice.getName(), choice);
}
return hashMap;
}
Das kann ich einfach mit Java 8 und Guava erreichen, aber ich möchte wissen, wie man dies ohne Guava machen kann.
In Guava:
private Map nameMap(List choices) {
return Maps.uniqueIndex(choices, new Function() {
@Override
public String apply(final Choice input) {
return input.getName();
}
});
}
Und Guava mit Java 8 Lambdas.
private Map nameMap(List choices) {
return Maps.uniqueIndex(choices, Choice::getName);
}