Are you just sorting Strings? If so, you don't need lambdas; there's no point. You just do
import static java.util.Comparator.*;
list.sort(naturalOrder());
...though if you're sorting objects with a String field, then it makes somewhat more sense:
list.sort(comparing(Foo::getString));