MCPcopy Index your code
hub / github.com/processing/processing / sort

Method sort

core/src/processing/data/Table.java:4304–4306  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

sortReverseMethod · 0.95

Calls 7

getColumnIndexMethod · 0.95
fromRangeMethod · 0.95
getRowCountMethod · 0.95
runMethod · 0.95
getColumnCountMethod · 0.95
getColumnTypeMethod · 0.95
arrayMethod · 0.45

Tested by

no test coverage detected