]> git.argeo.org Git - lgpl/argeo-commons.git/blob - basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularRowIterator.java
Make separator writable
[lgpl/argeo-commons.git] / basic / runtime / org.argeo.basic.nodeps / src / main / java / org / argeo / util / tabular / 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 }