Write a method that converts all strings in a list to their upper case lambda code example
Example: Write a method that converts all strings in a list to their upper case lambda
import java.util.Arrays;
import java.util.List;
//www . jav a 2 s . c o m
public class Main {
public static void main(final String[] args) {
List<String> friends = Arrays.asList("Ross", "Chandler", "CSS",
"Monica", "Joey", "Rachel");
friends.stream().map(name -> name.toUpperCase())
.forEach(name -> System.out.print(name + " "));
}
}