Why is it that the toUpperCase of String is not a static method, but can be called by String::toUpperCase?
List<String> myList =
Arrays.asList("a1", "a2", "b1", "c2", "c1");
myList
.stream()
.filter(s -> s.startsWith("c"))
.map(String::toUpperCase)
.sorted()
.forEach(System.out::println);
tutorials on the Internet