MCPcopy Index your code
hub / github.com/benfry/processing4 / sort

Method sort

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

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)

Source from the content-addressed store, hash-verified

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

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