Java 8의 스트림과 람다를 사용하여 객체 목록을 Map으로 변환하고 싶습니다.
이것이 Java 7 이하에서 작성하는 방법입니다.
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;
}
Java 8 및 Guava를 사용하여 쉽게 수행 할 수 있지만 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();
}
});
}
Java 8 람다가있는 구아바.
private Map<String, Choice> nameMap(List<Choice> choices) {
return Maps.uniqueIndex(choices, Choice::getName);
}
Maps.uniqueIndex(choices, Choice::getName)
있습니다.