Collections.sort(List, (a,b) -> x1 - x2);
Collections.sort(List, new Comparator<E>(){ public int compare(int a, int b){ return a - b; } });