Skip to content

Instantly share code, notes, and snippets.

@vfarcic
Created November 2, 2014 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vfarcic/f1784fdf38ddf560d9d8 to your computer and use it in GitHub Desktop.
Save vfarcic/f1784fdf38ddf560d9d8 to your computer and use it in GitHub Desktop.
package com.technologyconversations.java8exercises.streams;
import java.util.ArrayList;
import java.util.List;
import static java.util.stream.Collectors.toList;
public class FilterCollection {
public static List<String> transform7(List<String> collection) {
List<String> newCollection = new ArrayList<>();
for (String element : collection) {
if (element.length() < 4) {
newCollection.add(element);
}
}
return newCollection;
}
public static List<String> transform(List<String> collection) {
return collection.stream() // Convert collection to Stream
.filter(value -> value.length() < 4) // Filter elements with length smaller than 4 characters
.collect(toList()); // Collect results to a new list
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment