Package it.unimi.dsi.fastutil.doubles
Class DoubleIterators.UnmodifiableIterator
- java.lang.Object
-
- it.unimi.dsi.fastutil.doubles.DoubleIterators.UnmodifiableIterator
-
- All Implemented Interfaces:
DoubleIterator
,Iterator<Double>
,PrimitiveIterator<Double,DoubleConsumer>
,PrimitiveIterator.OfDouble
- Enclosing class:
- DoubleIterators
public static class DoubleIterators.UnmodifiableIterator extends Object implements DoubleIterator
An unmodifiable wrapper class for iterators.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface java.util.PrimitiveIterator
PrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong
-
-
Constructor Summary
Constructors Constructor Description UnmodifiableIterator(DoubleIterator i)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
double
nextDouble()
Returns the next element as a primitive type.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterator
forEachRemaining, next, skip
-
Methods inherited from interface java.util.PrimitiveIterator.OfDouble
forEachRemaining
-
-
-
-
Constructor Detail
-
UnmodifiableIterator
public UnmodifiableIterator(DoubleIterator i)
-
-
Method Detail
-
nextDouble
public double nextDouble()
Description copied from interface:DoubleIterator
Returns the next element as a primitive type.- Specified by:
nextDouble
in interfaceDoubleIterator
- Specified by:
nextDouble
in interfacePrimitiveIterator.OfDouble
- Returns:
- the next element in the iteration.
- See Also:
Iterator.next()
-
-