collector to list java 8 stream code example
Example: java stream to list
List<String> temp = toCheck.stream().map((a -> a.getFoo())).collect(Collectors.toList());
List<String> temp = toCheck.stream().map((a -> a.getFoo())).collect(Collectors.toList());