Sorts (orders) a table based on the values in a column. @webref table:method @brief Orders a table based on the values in a column @param columnName the name of the column to sort @see Table#trim()
(String columnName)
| 4302 | * @see Table#trim() |
| 4303 | */ |
| 4304 | public void sort(String columnName) { |
| 4305 | sort(getColumnIndex(columnName), false); |
| 4306 | } |
| 4307 | |
| 4308 | /** |
| 4309 | * @param column the column ID, e.g. 0, 1, 2 |
no test coverage detected