como ordenar un arraylist alfabéticamente en java

Collections.sort(list);
for(String temp: list){
    System.out.println(temp);
}
Scary Swiftlet