public static class CharBigListIterators.UnmodifiableBigListIterator extends Object implements CharBigListIterator
| Constructor and Description |
|---|
UnmodifiableBigListIterator(CharBigListIterator 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.
|
char |
nextChar()
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.
|
char |
previousChar()
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(CharBigListIterator 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<Character>ListIterator.hasPrevious()public char nextChar()
CharIteratornextChar in interface CharIteratorIterator.next()public char previousChar()
CharBidirectionalIteratorpreviousChar in interface CharBidirectionalIteratorListIterator.previous()public long nextIndex()
BigListIteratornextIndex in interface BigListIterator<Character>ListIterator.nextIndex()public long previousIndex()
BigListIteratorpreviousIndex in interface BigListIterator<Character>ListIterator.previousIndex()