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