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

Method setString

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

Stores a String value in the Table 's specified row and column. The row is specified by its ID, while the column may be specified by either its ID or title. @webref table:method @webBrief Stores a String value in the Table 's specified row and column @param row ID number of the target r

(int row, int column, String value)

Source from the content-addressed store, hash-verified

3592 * @see Table#getStringColumn(String)
3593 */
3594 public void setString(int row, int column, String value) {
3595 ensureBounds(row, column);
3596 if (columnTypes[column] != STRING) {
3597 throw new IllegalArgumentException("Column " + column + " is not a String column.");
3598 }
3599 String[] stringData = (String[]) columns[column];
3600 stringData[row] = value;
3601 }
3602
3603 /**
3604 * @param columnName title of the target column

Callers 10

TableMethod · 0.95
odsParseSheetMethod · 0.95
loadBinaryMethod · 0.95
setRowMethod · 0.95
setIntMethod · 0.95
setLongMethod · 0.95
setFloatMethod · 0.95
setDoubleMethod · 0.95
removeTokensMethod · 0.95
createSubsetMethod · 0.95

Calls 2

ensureBoundsMethod · 0.95
checkColumnIndexMethod · 0.95

Tested by

no test coverage detected