public class RangeIteratorDecorator
extends java.lang.Object
RangeIterators.| 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.
|
java.lang.Object |
next()
Delegated to the underlying iterator.
|
void |
remove()
Delegated to the underlying iterator.
|
void |
skip(long n)
Delegated to the underlying iterator.
|
public long getPosition()
public long getSize()
public void skip(long n)
throws java.util.NoSuchElementException
n - number of elements to skipjava.util.NoSuchElementException - if skipped past the last elementpublic boolean hasNext()
true if the iterator has more elements,
false otherwisepublic java.lang.Object next()
throws java.util.NoSuchElementException
java.util.NoSuchElementException - if there are no more elementspublic void remove()
throws java.lang.UnsupportedOperationException,
java.lang.IllegalStateException
java.lang.UnsupportedOperationException - if the operation is not supportedjava.lang.IllegalStateException - if there is no element to be removed"Copyright © 2010 - 2018 Adobe Systems Incorporated. All Rights Reserved"