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