public static class LongBigListIterators.EmptyBigListIterator extends AbstractLongBigListIterator implements Serializable, 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)
This method just iterates the type-specific version of
AbstractLongBidirectionalIterator.previous() for at most n times, stopping if BidirectionalIterator.hasPrevious() becomes false. |
Object |
clone() |
boolean |
hasNext() |
boolean |
hasPrevious()
Returns whether there is a previous element.
|
long |
nextIndex()
Returns the index of the element that would be returned by a subsequent call to next.
|
long |
nextLong()
Delegates to the corresponding generic method.
|
long |
previousIndex()
Returns the index of the element that would be returned by a subsequent call to previous.
|
long |
previousLong()
Delegates to the corresponding generic method.
|
long |
skip(long n)
This method just iterates the type-specific version of
AbstractLongIterator.next() for at most n times, stopping if Iterator.hasNext() becomes false. |
add, add, set, setback, previousnext, remove, skipequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitbackskipskippreviousforEachRemaining, next, removepublic boolean hasPrevious()
BidirectionalIteratorhasPrevious in interface BidirectionalIterator<Long>ListIterator.hasPrevious()public long nextLong()
AbstractLongIteratornextLong in interface LongIteratornextLong in class AbstractLongIteratorIterator.next()public long previousLong()
AbstractLongBidirectionalIteratorpreviousLong in interface LongBidirectionalIteratorpreviousLong in class AbstractLongBidirectionalIteratorListIterator.previous()public long nextIndex()
BigListIteratornextIndex in interface BigListIterator<Long>ListIterator.nextIndex()public long previousIndex()
BigListIteratorpreviousIndex in interface BigListIterator<Long>ListIterator.previousIndex()public long skip(long n)
AbstractLongBigListIteratorAbstractLongIterator.next() for at most n times, stopping if Iterator.hasNext() becomes false.skip in interface BigListIterator<Long>skip in class AbstractLongBigListIteratorn - the number of elements to skip.public long back(long n)
AbstractLongBigListIteratorAbstractLongBidirectionalIterator.previous() for at most n times, stopping if BidirectionalIterator.hasPrevious() becomes false.back in class AbstractLongBigListIterator