sort(Object[][] array, int sortCol, String sortOrder) Sort a 2 dimensional array based on 1 columns data in either ascending or descending order.
array - Array to be sorted
sortCol - column to sort by
sortOrder - sort the column in ascending or descending order.
Note if the passed object is a Colleciton itself or an Object[] it will be expanded
allocateArray
public static Object[][] allocateArray(int rows, int cols)(Code)
createCaseInsensitiveMap
public static Map createCaseInsensitiveMap()(Code)
Create a case insenstive Tree Map. More of a standard implementation that I wasn't aware
of when creating AppMap. It may only be able to handle Strings as a key. That isn't clear
Sort a 2 dimensional array based on 1 columns data in either ascending or descending order.
array - Array to be sorted
sortCol - column to sort by
sortOrder - sort the column in ascending or descending order. Valid arguments are "asc" and "desc".