public class RangeIteratorDecorator extends Object implements RangeIterator
RangeIterators.| Modifier | Constructor and Description |
|---|---|
protected |
RangeIteratorDecorator(RangeIterator iterator)
Creates a decorated iterator.
|
| Modifier and Type | Method and Description |
|---|---|
long |
getPosition()
Delegated to the underlying iterator.
|
long |
getSize()
Delegated to the underlying iterator.
|
boolean |
hasNext()
Delegated to the underlying iterator.
|
Object |
next()
Delegated to the underlying iterator.
|
void |
remove()
Delegated to the underlying iterator.
|
void |
skip(long n)
Delegated to the underlying iterator.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemainingprotected RangeIteratorDecorator(RangeIterator iterator)
iterator - the iterator to be decoratedpublic long getPosition()
getPosition in interface RangeIteratorpublic long getSize()
getSize in interface RangeIteratorpublic void skip(long n)
throws NoSuchElementException
skip in interface RangeIteratorn - number of elements to skipNoSuchElementException - if skipped past the last elementpublic boolean hasNext()
public Object next() throws NoSuchElementException
next in interface IteratorNoSuchElementException - if there are no more elementspublic void remove()
throws UnsupportedOperationException,
IllegalStateException
remove in interface IteratorUnsupportedOperationException - if the operation is not supportedIllegalStateException - if there is no element to be removedCopyright © 2004–2022 The Apache Software Foundation. All rights reserved.