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

Method getStringColumn

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

Retrieves all values in the specified column, and returns them as a String array. The column may be specified by either its ID or title. @webref table:method @webBrief Retrieves all values in the specified column @param columnName title of the column to search @see Table#getInt(int, int) @s

(String columnName)

Source from the content-addressed store, hash-verified

3623 * @see Table#setString(int, int, String)
3624 */
3625 public String[] getStringColumn(String columnName) {
3626 int col = getColumnIndex(columnName);
3627 return (col == -1) ? null : getStringColumn(col);
3628 }
3629
3630
3631 /**

Callers 9

trimMethod · 0.95
getUniqueMethod · 0.95
getTallyMethod · 0.95
getOrderMethod · 0.95
getStringListMethod · 0.95
getIntDictMethod · 0.95
getFloatDictMethod · 0.95
getStringDictMethod · 0.95
setColumnTypesMethod · 0.80

Calls 2

getColumnIndexMethod · 0.95
getStringMethod · 0.95

Tested by

no test coverage detected