@brief Finds multiple rows that contain the given value @param value the value to match @param column ID number of the column to search
(String value, int column)
| 3744 | * @param column ID number of the column to search |
| 3745 | */ |
| 3746 | public Iterator<TableRow> findRowIterator(String value, int column) { |
| 3747 | return new RowIndexIterator(this, findRowIndices(value, column)); |
| 3748 | } |
| 3749 | |
| 3750 | |
| 3751 | /** |
no test coverage detected