Class ShortIterators.AbstractIndexBasedListIterator
- java.lang.Object
-
- it.unimi.dsi.fastutil.shorts.AbstractShortIterator
-
- it.unimi.dsi.fastutil.shorts.ShortIterators.AbstractIndexBasedIterator
-
- it.unimi.dsi.fastutil.shorts.ShortIterators.AbstractIndexBasedListIterator
-
- All Implemented Interfaces:
BidirectionalIterator<java.lang.Short>,ObjectBidirectionalIterator<java.lang.Short>,ObjectIterator<java.lang.Short>,ShortBidirectionalIterator,ShortIterator,ShortListIterator,java.util.Iterator<java.lang.Short>,java.util.ListIterator<java.lang.Short>,java.util.PrimitiveIterator<java.lang.Short,ShortConsumer>
- Enclosing class:
- ShortIterators
public abstract static class ShortIterators.AbstractIndexBasedListIterator extends ShortIterators.AbstractIndexBasedIterator implements ShortListIterator
A skeletal implementation for a list-iterator backed by an index-based data store. High performance concrete implementations (like the main ListIterator of ArrayList) generally should avoid using this and just implement the interface directly, but should be decent for less performance critical implementations.This class is only appropriate for sequences that are at most
Integer.MAX_VALUElong. If your backing data store can be bigger then this, consider the equivalently named class in the type specificBigListSpliteratorsclass.As the abstract methods in this class are used in inner loops, it is generally a good idea to override the class as
finalas to encourage the JVM to inline them (or alternatively, override the abstract methods as final).
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(short k)Inserts the specified element into the list (optional operation).intback(int n)Moves back for the given number of elements.booleanhasPrevious()Returns whether there is a previous element.intnextIndex()intpreviousIndex()shortpreviousShort()Returns the previous element as a primitive type.voidset(short k)Replaces the last element returned byShortListIterator.next()orShortListIterator.previous()with the specified element (optional operation).-
Methods inherited from class it.unimi.dsi.fastutil.shorts.ShortIterators.AbstractIndexBasedIterator
forEachRemaining, hasNext, nextShort, remove, skip
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortBidirectionalIterator
skip
-
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortIterator
forEachRemaining, forEachRemaining, forEachRemaining, nextShort
-
-
-
-
Method Detail
-
hasPrevious
public boolean hasPrevious()
Description copied from interface:BidirectionalIteratorReturns whether there is a previous element.- Specified by:
hasPreviousin interfaceBidirectionalIterator<java.lang.Short>- Specified by:
hasPreviousin interfacejava.util.ListIterator<java.lang.Short>- Returns:
- whether there is a previous element.
- See Also:
ListIterator.hasPrevious()
-
previousShort
public short previousShort()
Description copied from interface:ShortBidirectionalIteratorReturns the previous element as a primitive type.- Specified by:
previousShortin interfaceShortBidirectionalIterator- Returns:
- the previous element in the iteration.
- See Also:
ListIterator.previous()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfacejava.util.ListIterator<java.lang.Short>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfacejava.util.ListIterator<java.lang.Short>
-
add
public void add(short k)
Description copied from interface:ShortListIteratorInserts the specified element into the list (optional operation).This default implementation just throws an
UnsupportedOperationException.- Specified by:
addin interfaceShortListIterator- Parameters:
k- the element to insert.- See Also:
ListIterator.add(Object)
-
set
public void set(short k)
Description copied from interface:ShortListIteratorReplaces the last element returned byShortListIterator.next()orShortListIterator.previous()with the specified element (optional operation).- Specified by:
setin interfaceShortListIterator- Parameters:
k- the element used to replace the last element returned.This default implementation just throws an
UnsupportedOperationException.- See Also:
ListIterator.set(Object)
-
back
public int back(int n)
Description copied from interface:ShortBidirectionalIteratorMoves back for the given number of elements.The effect of this call is exactly the same as that of calling
ShortBidirectionalIterator.previous()forntimes (possibly stopping ifBidirectionalIterator.hasPrevious()becomes false).- Specified by:
backin interfaceObjectBidirectionalIterator<java.lang.Short>- Specified by:
backin interfaceShortBidirectionalIterator- Parameters:
n- the number of elements to skip back.- Returns:
- the number of elements actually skipped.
- See Also:
ShortBidirectionalIterator.previous()
-
-