()
| 2719 | public Iterable<TableRow> rows() { |
| 2720 | return new Iterable<>() { |
| 2721 | public Iterator<TableRow> iterator() { |
| 2722 | if (rowIterator == null) { |
| 2723 | rowIterator = new RowIterator(Table.this); |
| 2724 | } else { |
| 2725 | rowIterator.reset(); |
| 2726 | } |
| 2727 | return rowIterator; |
| 2728 | } |
| 2729 | }; |
| 2730 | } |
| 2731 |
no test coverage detected