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

htsjdk.tribble.readers.LineIterator Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
package htsjdk.tribble.readers;

import java.util.Iterator;

/**
 * A very simple descriptor for line-iterables.
 * @author mccowan
 */
public interface LineIterator extends Iterator {
    /** Peeks at the next line, without expending any elements in the underlying iterator. */
    public String peek();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy