I want to develop a sorting demo for car list. I am using data table to display car list. Now actually I want to sort the list by car color. Here it is not sort by alphabeti
Using just simple loops:
public static void compareSortOrder (List sortOrder, List listToCompare){ int currentSortingLevel = 0; for (int i=0; i
And sort order in List
public static List ALARMS_LIST = Arrays.asList( "CRITICAL", "MAJOR", "MINOR", "WARNING", "GOOD", "N/A");