Package org.apache.lucene.internal.hppc
Class AbstractIterator<E>
java.lang.Object
org.apache.lucene.internal.hppc.AbstractIterator<E>
- All Implemented Interfaces:
Iterator<E>
- Direct Known Subclasses:
CharHashSet.EntryIterator
,IntHashSet.EntryIterator
,LongHashSet.EntryIterator
Simplifies the implementation of iterators a bit. Modeled loosely after Google Guava's API.
Forked from com.carrotsearch.hppc.AbstractIterator
- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
Constructor Details
-
AbstractIterator
public AbstractIterator()
-
-
Method Details
-
hasNext
public boolean hasNext() -
next
-
remove
public void remove()Default implementation throwsUnsupportedOperationException
. -
fetch
Fetch next element. The implementation must returndone()
when all elements have been fetched.- Returns:
- Returns the next value for the iterator or chain-calls
done()
.
-
done
Call when done.- Returns:
- Returns a unique sentinel value to indicate end-of-iteration.
-