Chcę przetłumaczyć listę obiektów na mapę przy użyciu strumieni i lambd Java 3.
Tak napisałbym to w Javie 7 i niższych.
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;
}
Mogę to łatwo osiągnąć za pomocą Java 8 i Guava, ale chciałbym wiedzieć, jak to zrobić bez Guava.
W Guava:
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();
}
});
}
I Guawa z lambdami Java 8.
private Map<String, Choice> nameMap(List<Choice> choices) {
return Maps.uniqueIndex(choices, Choice::getName);
}
Maps.uniqueIndex(choices, Choice::getName)
.