public static class ObjectBigListIterators.EmptyBigListIterator<K> extends java.lang.Object implements ObjectBigListIterator<K>, java.io.Serializable, java.lang.Cloneable
This class may be useful to implement your own in case you subclass a type-specific iterator.
Modifier and Type | Method and Description |
---|---|
long |
back(long n)
Moves back for the given number of elements.
|
java.lang.Object |
clone() |
void |
forEachRemaining(java.util.function.Consumer<? super K> action) |
boolean |
hasNext() |
boolean |
hasPrevious()
Returns whether there is a previous element.
|
K |
next() |
long |
nextIndex()
Returns the index of the element that would be returned by a subsequent call to next.
|
K |
previous()
Returns the previous element from the collection.
|
long |
previousIndex()
Returns the index of the element that would be returned by a subsequent call to previous.
|
long |
skip(long n)
Skips the given number of elements.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
add, set, skip
back
public boolean hasNext()
hasNext
in interface java.util.Iterator<K>
public boolean hasPrevious()
BidirectionalIterator
hasPrevious
in interface BidirectionalIterator<K>
ListIterator.hasPrevious()
public K previous()
BidirectionalIterator
previous
in interface BidirectionalIterator<K>
ListIterator.previous()
public long nextIndex()
BigListIterator
nextIndex
in interface BigListIterator<K>
ListIterator.nextIndex()
public long previousIndex()
BigListIterator
previousIndex
in interface BigListIterator<K>
ListIterator.previousIndex()
public long skip(long n)
ObjectBigListIterator
The effect of this call is exactly the same as that of
calling next()
for n
times (possibly stopping
if Iterator.hasNext()
becomes false).
skip
in interface ObjectBigListIterator<K>
n
- the number of elements to skip.Iterator.next()
public long back(long n)
ObjectBigListIterator
The effect of this call is exactly the same as that of
calling previous()
for n
times (possibly stopping
if BidirectionalIterator.hasPrevious()
becomes false).
back
in interface ObjectBigListIterator<K>
n
- the number of elements to skip back.BidirectionalIterator.previous()
public java.lang.Object clone()
clone
in class java.lang.Object