ArrayList<String> myArray = new ArrayList<>(); ... Collections.sort(myArray, String.CASE_INSENSITIVE_ORDER); // Case-insensitive sortOr
Collections.sort(myArray, Collator.getInstance());
ArrayList<String> myArray = new ArrayList<>(); ... Collections.sort(myArray, String.CASE_INSENSITIVE_ORDER); // Case-insensitive sortOr
Collections.sort(myArray, Collator.getInstance());