Package it.unimi.dsi.fastutil.ints
Class IntIterators.UnmodifiableListIterator
java.lang.Object
it.unimi.dsi.fastutil.ints.IntIterators.UnmodifiableListIterator
- All Implemented Interfaces:
BidirectionalIterator<Integer>,IntBidirectionalIterator,IntIterator,IntListIterator,ObjectBidirectionalIterator<Integer>,ObjectIterator<Integer>,Iterator<Integer>,ListIterator<Integer>,PrimitiveIterator<Integer,IntConsumer>,PrimitiveIterator.OfInt
- Enclosing class:
- IntIterators
public static class IntIterators.UnmodifiableListIterator extends Object implements IntListIterator
An unmodifiable wrapper class for list iterators.
-
Nested Class Summary
Nested classes/interfaces inherited from interface java.util.PrimitiveIterator
PrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong -
Constructor Summary
Constructors Constructor Description UnmodifiableListIterator(IntListIterator i) -
Method Summary
Modifier and Type Method Description booleanhasNext()booleanhasPrevious()Returns whether there is a previous element.intnextIndex()intnextInt()Returns the next element as a primitive type.intpreviousIndex()intpreviousInt()Returns the previous element as a primitive type.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Method Details
-
hasNext
public boolean hasNext() -
hasPrevious
public boolean hasPrevious()Description copied from interface:BidirectionalIteratorReturns whether there is a previous element.- Specified by:
hasPreviousin interfaceBidirectionalIterator<Integer>- Specified by:
hasPreviousin interfaceListIterator<Integer>- Returns:
- whether there is a previous element.
- See Also:
ListIterator.hasPrevious()
-
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:
Iterator.next()
-
previousInt
public int previousInt()Description copied from interface:IntBidirectionalIteratorReturns the previous element as a primitive type.- Specified by:
previousIntin interfaceIntBidirectionalIterator- Returns:
- the previous element in the iteration.
- See Also:
ListIterator.previous()
-
nextIndex
public int nextIndex()- Specified by:
nextIndexin interfaceListIterator<Integer>
-
previousIndex
public int previousIndex()- Specified by:
previousIndexin interfaceListIterator<Integer>
-