I have the following qustion:
How can I convert the following code snipped to Java 8 lambda style?
List tmpAdresses = new ArrayList
It is extended your idea:
List tmpAdresses = users.stream().map(user ->user.getAdress()) .collect(Collectors.toList())