Package htsjdk.tribble.readers
Interface LineIterator
-
- All Known Implementing Classes:
AsciiLineReaderIterator
,LineIteratorImpl
public interface LineIterator extends Iterator<String>
A very simple descriptor for line-iterables.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
peek()
Peeks at the next line, without expending any elements in the underlying iterator.-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
-
-
-
Method Detail
-
peek
String peek()
Peeks at the next line, without expending any elements in the underlying iterator.
-
-