public static class IntBigListIterators.EmptyBigListIterator extends AbstractIntBigListIterator 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
AbstractIntBidirectionalIterator.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.
|
int |
nextInt()
Delegates to the corresponding generic method.
|
long |
previousIndex()
Returns the index of the element that would be returned by a subsequent call to previous.
|
int |
previousInt()
Delegates to the corresponding generic method.
|
long |
skip(long n)
This method just iterates the type-specific version of
AbstractIntIterator.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<Integer>ListIterator.hasPrevious()public int nextInt()
AbstractIntIteratornextInt in interface IntIteratornextInt in class AbstractIntIteratorIterator.next()public int previousInt()
AbstractIntBidirectionalIteratorpreviousInt in interface IntBidirectionalIteratorpreviousInt in class AbstractIntBidirectionalIteratorListIterator.previous()public long nextIndex()
BigListIteratornextIndex in interface BigListIterator<Integer>ListIterator.nextIndex()public long previousIndex()
BigListIteratorpreviousIndex in interface BigListIterator<Integer>ListIterator.previousIndex()public long skip(long n)
AbstractIntBigListIteratorAbstractIntIterator.next() for at most n times, stopping if Iterator.hasNext() becomes false.skip in interface BigListIterator<Integer>skip in class AbstractIntBigListIteratorn - the number of elements to skip.public long back(long n)
AbstractIntBigListIteratorAbstractIntBidirectionalIterator.previous() for at most n times, stopping if BidirectionalIterator.hasPrevious() becomes false.back in class AbstractIntBigListIterator