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

Method getStringColumn

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

@webref table:method @brief Gets all values in the specified column @param columnName title of the column to search @see Table#getInt(int, int) @see Table#getFloat(int, int) @see Table#getString(int, int) @see Table#setInt(int, int, int) @see Table#setFloat(int, int, float) @see Table#setString(int,

(String columnName)

Source from the content-addressed store, hash-verified

3555 * @see Table#setString(int, int, String)
3556 */
3557 public String[] getStringColumn(String columnName) {
3558 int col = getColumnIndex(columnName);
3559 return (col == -1) ? null : getStringColumn(col);
3560 }
3561
3562
3563 /**

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