]> git.argeo.org Git - lgpl/argeo-commons.git/blob - TabularRowIterator.java
e75cff8c1cb32118f5c9d101202414bfe332d829
[lgpl/argeo-commons.git] / TabularRowIterator.java
1 package org.argeo.util.tabular;
2
3 import java.util.Iterator;
4
5 /** Navigation of rows */
6 public interface TabularRowIterator extends Iterator<TabularRow> {
7 /**
8 * Current row number, has to be incremented by each call to next() ; starts at 0, will
9 * therefore be 1 for the first row returned.
10 */
11 public Long getCurrentRowNumber();
12 }