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

Method findRow

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

Finds the first row in the Table that contains the value provided, and returns a reference to that row. Even if multiple rows are possible matches, only the first matching row is returned. The column to search may be specified by either its ID or title. @webref table:method @webBrief Finds

(String value, int column)

Source from the content-addressed store, hash-verified

3770 * @see Table#matchRows(String, int)
3771 */
3772 public TableRow findRow(String value, int column) {
3773 int row = findRowIndex(value, column);
3774 return (row == -1) ? null : new RowPointer(this, row);
3775 }
3776
3777
3778 /**

Callers

nothing calls this directly

Calls 2

findRowIndexMethod · 0.95
getColumnIndexMethod · 0.95

Tested by

no test coverage detected