Package it.unimi.dsi.fastutil.shorts
Interface ShortListIterator
- All Superinterfaces:
BidirectionalIterator<Short>
,Iterator<Short>
,ListIterator<Short>
,ObjectBidirectionalIterator<Short>
,ObjectIterator<Short>
,PrimitiveIterator<Short,
,ShortConsumer> ShortBidirectionalIterator
,ShortIterator
- All Known Implementing Classes:
AbstractShortListIterator
,ShortIterators.AbstractIndexBasedListIterator
,ShortIterators.EmptyIterator
,ShortIterators.UnmodifiableListIterator
A type-specific bidirectional iterator that is also a
ListIterator
.
This interface merges the methods provided by a ListIterator
and a type-specific
BidirectionalIterator
. Moreover, it provides type-specific versions
of add()
and set()
.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface java.util.PrimitiveIterator
PrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
add
(short k) Inserts the specified element into the list (optional operation).default void
Deprecated.Please use the corresponding type-specific method instead.default Short
next()
Deprecated.Please use the corresponding type-specific method instead.default Short
previous()
Deprecated.Please use the corresponding type-specific method instead.default void
remove()
Removes from the underlying collection the last element returned by this iterator (optional operation).default void
set
(short k) Replaces the last element returned bynext()
orprevious()
with the specified element (optional operation).default void
Deprecated.Please use the corresponding type-specific method instead.Methods inherited from interface it.unimi.dsi.fastutil.BidirectionalIterator
hasPrevious
Methods inherited from interface java.util.ListIterator
hasNext, hasPrevious, nextIndex, previousIndex
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortBidirectionalIterator
back, previousShort, skip
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortIterator
forEachRemaining, forEachRemaining, forEachRemaining, nextShort
-
Method Details
-
set
default void set(short k) Replaces the last element returned bynext()
orprevious()
with the specified element (optional operation).- Parameters:
k
- the element used to replace the last element returned.This default implementation just throws an
UnsupportedOperationException
.- See Also:
-
add
default void add(short k) Inserts the specified element into the list (optional operation).This default implementation just throws an
UnsupportedOperationException
.- Parameters:
k
- the element to insert.- See Also:
-
remove
default void remove()Removes from the underlying collection the last element returned by this iterator (optional operation).This default implementation just throws an
UnsupportedOperationException
. -
set
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
set
in interfaceListIterator<Short>
-
add
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
add
in interfaceListIterator<Short>
-
next
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
next
in interfaceIterator<Short>
- Specified by:
next
in interfaceListIterator<Short>
- Specified by:
next
in interfaceShortIterator
-
previous
Deprecated.Please use the corresponding type-specific method instead.Returns the previous element from the collection.- Specified by:
previous
in interfaceBidirectionalIterator<Short>
- Specified by:
previous
in interfaceListIterator<Short>
- Specified by:
previous
in interfaceShortBidirectionalIterator
- Returns:
- the previous element from the collection.
- See Also:
-