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

Method setString

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

@webref table:method @brief Store a String value in the specified row and column @param row ID number of the target row @param column ID number of the target column @param value value to assign @see Table#setInt(int, int, int) @see Table#setFloat(int, int, float) @see Table#getInt(int, int) @see Tab

(int row, int column, String value)

Source from the content-addressed store, hash-verified

3527 * @see Table#getStringColumn(String)
3528 */
3529 public void setString(int row, int column, String value) {
3530 ensureBounds(row, column);
3531 if (columnTypes[column] != STRING) {
3532 throw new IllegalArgumentException("Column " + column + " is not a String column.");
3533 }
3534 String[] stringData = (String[]) columns[column];
3535 stringData[row] = value;
3536 }
3537
3538 /**
3539 * @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