Could somebody show me a quick example how to sort an ArrayList alphabetically in Java 8 using the new lambda syntax.
ArrayList
Most concise:
Collections.sort(stringList, String::compareToIgnoreCase);