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>,Iterator<K>,ListIterator<K>
- Enclosing class:
- ObjectIterators
public static class ObjectIterators.UnmodifiableListIterator<K> extends Object implements ObjectListIterator<K>
An unmodifiable wrapper class for list iterators.
-
-
Constructor Summary
Constructors Constructor Description UnmodifiableListIterator(ObjectListIterator<K> i)
-
Method Summary
Modifier and Type Method Description 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, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Methods inherited from interface it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator
back, skip
-
Methods inherited from interface it.unimi.dsi.fastutil.objects.ObjectListIterator
add, remove, set
-
-
-
-
Constructor Detail
-
UnmodifiableListIterator
public UnmodifiableListIterator(ObjectListIterator<K> i)
-
-
Method Detail
-
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 interfaceListIterator<K>- Returns:
- whether there is a previous element.
- See Also:
ListIterator.hasPrevious()
-
next
public K next()
-
previous
public K previous()
Description copied from interface:BidirectionalIteratorReturns the previous element from the collection.- Specified by:
previousin interfaceBidirectionalIterator<K>- Specified by:
previousin interfaceListIterator<K>- Returns:
- the previous element from the collection.
- See Also:
ListIterator.previous()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfaceListIterator<K>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfaceListIterator<K>
-
-