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

Method findRow

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

@webref table:method @brief Finds a row that contains the given value @param value the value to match @param column ID number of the column to search @see Table#getRow(int) @see Table#rows() @see Table#findRows(String, int) @see Table#matchRow(String, int) @see Table#matchRows(String, int)

(String value, int column)

Source from the content-addressed store, hash-verified

3697 * @see Table#matchRows(String, int)
3698 */
3699 public TableRow findRow(String value, int column) {
3700 int row = findRowIndex(value, column);
3701 return (row == -1) ? null : new RowPointer(this, row);
3702 }
3703
3704
3705 /**

Callers

nothing calls this directly

Calls 2

findRowIndexMethod · 0.95
getColumnIndexMethod · 0.95

Tested by

no test coverage detected