need .flatMap(Collection::stream)
projects.stream()
.map(Project::getGroups)
.flatMap(Collection::stream)
.map(Group::getStudents)
.flatMap(Collection::stream)
.map(Student::getName)
.collect(toList());