Package com.carrotsearch.hppc
Class LongArrayList.ValueIterator
- java.lang.Object
-
- com.carrotsearch.hppc.AbstractIterator<LongCursor>
-
- com.carrotsearch.hppc.LongArrayList.ValueIterator
-
- All Implemented Interfaces:
java.util.Iterator<LongCursor>
- Enclosing class:
- LongArrayList
static final class LongArrayList.ValueIterator extends AbstractIterator<LongCursor>
An iterator implementation forLongArrayList.iterator()
.
-
-
Field Summary
Fields Modifier and Type Field Description private long[]
buffer
private LongCursor
cursor
private int
size
-
Constructor Summary
Constructors Constructor Description ValueIterator(long[] buffer, int size)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected LongCursor
fetch()
Fetch next element.-
Methods inherited from class com.carrotsearch.hppc.AbstractIterator
done, hasNext, next, remove
-
-
-
-
Field Detail
-
cursor
private final LongCursor cursor
-
buffer
private final long[] buffer
-
size
private final int size
-
-
Method Detail
-
fetch
protected LongCursor fetch()
Description copied from class:AbstractIterator
Fetch next element. The implementation must returnAbstractIterator.done()
when all elements have been fetched.- Specified by:
fetch
in classAbstractIterator<LongCursor>
- Returns:
- Returns the next value for the iterator or chain-calls
AbstractIterator.done()
.
-
-