public abstract class AbstractIntIterator extends java.lang.Object implements IntIterator
To create a type-specific iterator you need both a method returning the next element as primitive type and a method returning the next element as an object. However, if you inherit from this class you need just one (anyone).
This class implements also a trivial version of skip(int) that uses
type-specific methods; moreover, remove() will throw an
UnsupportedOperationException.
Iterator| Modifier | Constructor and Description |
|---|---|
protected |
AbstractIntIterator() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Integer |
next()
Deprecated.
Please use the corresponding type-specific method instead.
|
int |
nextInt()
Delegates to the corresponding generic method.
|
void |
remove()
This method just throws an
UnsupportedOperationException. |
int |
skip(int n)
This method just iterates the type-specific version of
next()
for at most n times, stopping if Iterator.hasNext() becomes
false. |
public int nextInt()
nextInt in interface IntIteratorIterator.next()@Deprecated public java.lang.Integer next()
next in interface java.util.Iterator<java.lang.Integer>public void remove()
UnsupportedOperationException.remove in interface java.util.Iterator<java.lang.Integer>public int skip(int n)
next()
for at most n times, stopping if Iterator.hasNext() becomes
false.skip in interface IntIteratorn - the number of elements to skip.Iterator.next()