Java Stream Получите список одного поля
List<String> names =
personList.stream()
.map(Person::getName)
.collect(Collectors.toList());
Encouraging Eland