oms3.io.TableIterator Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package oms3.io;
import java.util.Iterator;
/** An iterator that allows skipping rows in a table.
*
* @author od
*/
public interface TableIterator extends Iterator {
/** Skip n rows
* @param n the number of lines to skip.
*/
public void skip(int n);
public void close();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy