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

Method addColumn

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

Use addColumn() to add a new column to a Table object. Typically, you will want to specify a title, so the column may be easily referenced later by name. (If no title is specified, the new column's title will be null .) A column type may also be specified, in which case all value

()

Source from the content-addressed store, hash-verified

1815 * @see Table#removeColumn(String)
1816 */
1817 public void addColumn() {
1818 addColumn(null, STRING);
1819 }
1820
1821
1822 /**

Callers 2

parseIntoMethod · 0.95
checkColumnIndexMethod · 0.95

Calls 1

insertColumnMethod · 0.95

Tested by 1

parseIntoMethod · 0.76