]> git.argeo.org Git - lgpl/argeo-commons.git/blob - basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularRowIterator.java
Introduce reference doc
[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 line number, incremented by each call to next(), starts at 0, but
9 * will therefore be 1 for the first row returned.
10 */
11 public Long getCurrentLineNumber();
12 }