All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oms3.io.TableIterator Maven / Gradle / Ivy

There is a newer version: 0.8.1
Show newest version
/*
 * 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