List<Person> newList = childrenList.stream() .map(this::convertChildToPerson) .collect(Collectors.toList()); personList.addAll(newList);