Created
November 2, 2014 21:29
-
-
Save vfarcic/f1784fdf38ddf560d9d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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