Class UnmodifiableIntIterator
- java.lang.Object
-
- org.eclipse.collections.impl.iterator.UnmodifiableIntIterator
-
- All Implemented Interfaces:
IntIterator,MutableIntIterator
public class UnmodifiableIntIterator extends Object implements MutableIntIterator
UnmodifiableIntIterator is a wrapper around IntIterator which is unmodifiable and doesn't support remove. This file was automatically generated from template file unmodifiablePrimitiveIterator.stg.
-
-
Constructor Summary
Constructors Constructor Description UnmodifiableIntIterator(IntIterator intIterator)
-
-
-
Constructor Detail
-
UnmodifiableIntIterator
public UnmodifiableIntIterator(IntIterator intIterator)
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfaceIntIterator
-
next
public int next()
- Specified by:
nextin interfaceIntIterator
-
remove
public void remove()
- Specified by:
removein interfaceMutableIntIterator
-
-