@webref table:method @brief 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)
| 3902 | * @param column ID number of the column to search |
| 3903 | */ |
| 3904 | public Iterator<TableRow> matchRowIterator(String value, int column) { |
| 3905 | return new RowIndexIterator(this, matchRowIndices(value, column)); |
| 3906 | } |
| 3907 | |
| 3908 | |
| 3909 | /** |
no test coverage detected