public static class BooleanBigListIterators.UnmodifiableBigListIterator extends Object implements BooleanBigListIterator
| Constructor and Description |
|---|
UnmodifiableBigListIterator(BooleanBigListIterator i) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext()
Returns
true if the iteration has more elements. |
boolean |
hasPrevious()
Returns whether there is a previous element.
|
boolean |
nextBoolean()
Returns the next element as a primitive type.
|
long |
nextIndex()
Returns the index of the element that would be returned by a subsequent call to next.
|
boolean |
previousBoolean()
Returns the previous element as a primitive type.
|
long |
previousIndex()
Returns the index of the element that would be returned by a subsequent call to previous.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitadd, add, back, set, set, skip, skipback, previousforEachRemaining, forEachRemaining, nextpublic UnmodifiableBigListIterator(BooleanBigListIterator i)
public boolean hasNext()
java.util.Iteratortrue if the iteration has more elements.
(In other words, returns true if Iterator.next() would
return an element rather than throwing an exception.)public boolean hasPrevious()
BidirectionalIteratorhasPrevious in interface BidirectionalIterator<Boolean>ListIterator.hasPrevious()public boolean nextBoolean()
BooleanIteratornextBoolean in interface BooleanIteratorIterator.next()public boolean previousBoolean()
BooleanBidirectionalIteratorpreviousBoolean in interface BooleanBidirectionalIteratorListIterator.previous()public long nextIndex()
BigListIteratornextIndex in interface BigListIterator<Boolean>ListIterator.nextIndex()public long previousIndex()
BigListIteratorpreviousIndex in interface BigListIterator<Boolean>ListIterator.previousIndex()