java stream sort

Java
List<String> sorted = original.stream().sorted().collect(Collectors.toList());
Source

Also in Java: