Package it.unimi.dsi.fastutil.ints
Class IntIterators.UnmodifiableIterator
java.lang.Object
it.unimi.dsi.fastutil.ints.IntIterators.UnmodifiableIterator
- All Implemented Interfaces:
IntIterator,Iterator<Integer>,PrimitiveIterator<Integer,,IntConsumer> PrimitiveIterator.OfInt
- Enclosing class:
IntIterators
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 -
Method Summary
Modifier and TypeMethodDescriptionvoidforEachRemaining(Consumer<? super Integer> action) Deprecated.voidforEachRemaining(IntConsumer action) booleanhasNext()intnextInt()Returns the next element as a primitive type.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface it.unimi.dsi.fastutil.ints.IntIterator
forEachRemaining, next, skip
-
Constructor Details
-
UnmodifiableIterator
-
-
Method Details
-
hasNext
public boolean hasNext() -
nextInt
public int nextInt()Description copied from interface:IntIteratorReturns the next element as a primitive type.- Specified by:
nextIntin interfaceIntIterator- Specified by:
nextIntin interfacePrimitiveIterator.OfInt- Returns:
- the next element in the iteration.
- See Also:
-
forEachRemaining
- Specified by:
forEachRemainingin interfacePrimitiveIterator<Integer,IntConsumer> - Specified by:
forEachRemainingin interfacePrimitiveIterator.OfInt
-
forEachRemaining
Deprecated.Description copied from interface:IntIterator- Specified by:
forEachRemainingin interfaceIntIterator- Specified by:
forEachRemainingin interfaceIterator<Integer>- Specified by:
forEachRemainingin interfacePrimitiveIterator.OfInt
-