Sorts (orders) a table based on the values in a column. @webref table:method @webBrief Orders a table based on the values in a column @param columnName the name of the column to sort @see Table#trim()
(String columnName)
| 4401 | * @see Table#trim() |
| 4402 | */ |
| 4403 | public void sort(String columnName) { |
| 4404 | sort(getColumnIndex(columnName), false); |
| 4405 | } |
| 4406 | |
| 4407 | /** |
| 4408 | * @param column the column ID, e.g. 0, 1, 2 |
no test coverage detected