I need to sort list of strings in the alphabetical order:
List list = new ArrayList(); list.add(\"development\"); list.add(\"Development\"); li
Simply use
java.util.Collections.sort(list)
without String.CASE_INSENSITIVE_ORDER comparator parameter.