How do I sort string values in case-insensitive order in the following?
List listofEmployees = Arrays.asList( new Employee(1, \"aaa\", Ar
It looks like there is a Comparator that orders String objects as by compareToIgnoreCase, you can read the documentation here: https://docs.oracle.com/javase/8/docs/api/java/lang/String.html#CASE_INSENSITIVE_ORDER