import java.util.*; public class Test { List getArray(){ return null; } void foo() { List array = getArray(); Collections.sort(array, new Comparator() { public int compare(String s1, String s2) { return 0; } }); } }