htsjdk.tribble.readers.LineIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htsjdk Show documentation
Show all versions of htsjdk Show documentation
A Java API for high-throughput sequencing data (HTS) formats
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