@webBrief 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)
| 3822 | * @param column ID number of the column to search |
| 3823 | */ |
| 3824 | public Iterator<TableRow> findRowIterator(String value, int column) { |
| 3825 | return new RowIndexIterator(this, findRowIndices(value, column)); |
| 3826 | } |
| 3827 | |
| 3828 | |
| 3829 | /** |
no test coverage detected