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)
| 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 | /** |
nothing calls this directly
no test coverage detected