Finds multiple rows that match the given expression @webref table:method @webBrief Finds multiple rows that match the given expression @param value the regular expression to match @param column ID number of the column to search
(String value, int column)
| 3992 | * @param column ID number of the column to search |
| 3993 | */ |
| 3994 | public Iterator<TableRow> matchRowIterator(String value, int column) { |
| 3995 | return new RowIndexIterator(this, matchRowIndices(value, column)); |
| 3996 | } |
| 3997 | |
| 3998 | |
| 3999 | /** |
no test coverage detected