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

Method removeColumn

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

Use removeColumn() to remove an existing column from a Table object. The column to be removed may be identified by either its title (a String ) or its index value (an int ). removeColumn(0) would remove the first column, removeColumn(1) would remove the second

(String columnName)

Source from the content-addressed store, hash-verified

1896 * @see Table#addColumn()
1897 */
1898 public void removeColumn(String columnName) {
1899 removeColumn(getColumnIndex(columnName));
1900 }
1901
1902 /**
1903 * @param column the index number of the column to be removed

Callers 1

trimMethod · 0.95

Calls 1

getColumnIndexMethod · 0.95

Tested by

no test coverage detected