java stream obtient la liste d'un champ

List<String> names = 
    personList.stream()
              .map(Person::getName)
              .collect(Collectors.toList());
Encouraging Eland