java 8 stream convert list of object to list of string 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());