Package it.unimi.dsi.fastutil.objects
Class ObjectIterators.EmptyIterator<K>
java.lang.Object
it.unimi.dsi.fastutil.objects.ObjectIterators.EmptyIterator<K>
- All Implemented Interfaces:
BidirectionalIterator<K>,ObjectBidirectionalIterator<K>,ObjectIterator<K>,ObjectListIterator<K>,Serializable,Cloneable,Iterator<K>,ListIterator<K>
- Enclosing class:
- ObjectIterators
public static class ObjectIterators.EmptyIterator<K>
extends Object
implements ObjectListIterator<K>, Serializable, Cloneable
A class returning no elements and a type-specific iterator interface.
This class may be useful to implement your own in case you subclass a type-specific iterator.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionintback(int n) Moves back for the given number of elements.clone()voidforEachRemaining(Consumer<? super K> action) booleanhasNext()booleanReturns whether there is a previous element.next()intprevious()Returns the previous element from the collection.intintskip(int n) Skips the given number of elements.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface it.unimi.dsi.fastutil.objects.ObjectListIterator
add, remove, set
-
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 interfaceListIterator<K>- Returns:
- whether there is a previous element.
- See Also:
-
next
-
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:
-
nextIndex
public int nextIndex()- Specified by:
nextIndexin interfaceListIterator<K>
-
previousIndex
public int previousIndex()- Specified by:
previousIndexin interfaceListIterator<K>
-
skip
public int skip(int n) Description copied from interface:ObjectBidirectionalIteratorSkips the given number of elements.The effect of this call is exactly the same as that of calling
Iterator.next()forntimes (possibly stopping ifIterator.hasNext()becomes false).- Specified by:
skipin interfaceObjectBidirectionalIterator<K>- Specified by:
skipin interfaceObjectIterator<K>- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
-
back
public int back(int n) Description copied from interface:ObjectBidirectionalIteratorMoves back for the given number of elements.The effect of this call is exactly the same as that of calling
BidirectionalIterator.previous()forntimes (possibly stopping ifBidirectionalIterator.hasPrevious()becomes false).- Specified by:
backin interfaceObjectBidirectionalIterator<K>- Parameters:
n- the number of elements to skip back.- Returns:
- the number of elements actually skipped.
- See Also:
-
forEachRemaining
- Specified by:
forEachRemainingin interfaceIterator<K>
-
clone
-