Distinct

중복된 데이터가 제거된 stream을 리턴

List<String> distinctList = members.stream()
.distinct()
.mapgetName
.collect(Collectors.toList());