Package it.unimi.dsi.fastutil.objects
Class ObjectIterators.UnmodifiableListIterator<K>
java.lang.Object
it.unimi.dsi.fastutil.objects.ObjectIterators.UnmodifiableListIterator<K>
- All Implemented Interfaces:
BidirectionalIterator<K>,ObjectBidirectionalIterator<K>,ObjectIterator<K>,ObjectListIterator<K>,java.util.Iterator<K>,java.util.ListIterator<K>
- Enclosing class:
- ObjectIterators
public static class ObjectIterators.UnmodifiableListIterator<K> extends java.lang.Object implements ObjectListIterator<K>
An unmodifiable wrapper class for list iterators.
-
Constructor Summary
Constructors Constructor Description UnmodifiableListIterator(ObjectListIterator<? extends K> i) -
Method Summary
Modifier and Type Method Description voidforEachRemaining(java.util.function.Consumer<? super K> action)booleanhasNext()booleanhasPrevious()Returns whether there is a previous element.Knext()intnextIndex()Kprevious()Returns the previous element from the collection.intpreviousIndex()Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator
back, skipMethods inherited from interface it.unimi.dsi.fastutil.objects.ObjectListIterator
add, remove, set
-
Constructor Details
-
UnmodifiableListIterator
-
-
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<K>- Specified by:
hasPreviousin interfacejava.util.ListIterator<K>- Returns:
- whether there is a previous element.
- See Also:
ListIterator.hasPrevious()
-
next
-
previous
Description copied from interface:BidirectionalIteratorReturns the previous element from the collection.- Specified by:
previousin interfaceBidirectionalIterator<K>- Specified by:
previousin interfacejava.util.ListIterator<K>- Returns:
- the previous element from the collection.
- See Also:
ListIterator.previous()
-
nextIndex
public int nextIndex()- Specified by:
nextIndexin interfacejava.util.ListIterator<K>
-
previousIndex
public int previousIndex()- Specified by:
previousIndexin interfacejava.util.ListIterator<K>
-
forEachRemaining
- Specified by:
forEachRemainingin interfacejava.util.Iterator<K>
-