public interface DoubleListIterator extends DoubleBidirectionalIterator, ListIterator<Double>
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().
ListIterator,
BidirectionalIteratorPrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong| Modifier and Type | Method and Description |
|---|---|
default void |
add(double k)
Inserts the specified element into the list (optional operation).
|
default void |
add(Double k)
Deprecated.
Please use the corresponding type-specific method instead.
|
default Double |
next()
Deprecated.
Please use the corresponding type-specific method instead.
|
default Double |
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(double k)
Replaces the last element returned by
next() or
previous() with the specified element (optional operation). |
default void |
set(Double k)
Deprecated.
Please use the corresponding type-specific method instead.
|
back, previousDouble, skipforEachRemaining, nextDoubleforEachRemaininghasPrevioushasNext, hasPrevious, nextIndex, previousIndexdefault void set(double k)
next() or
previous() with the specified element (optional operation).k - the element used to replace the last element returned.
This default implementation just throws an UnsupportedOperationException.
ListIterator.set(Object)default void add(double k)
This default implementation just throws an UnsupportedOperationException.
k - the element to insert.ListIterator.add(Object)default void remove()
This default implementation just throws an UnsupportedOperationException.
remove in interface Iterator<Double>remove in interface ListIterator<Double>ListIterator.remove()@Deprecated default void set(Double k)
set in interface ListIterator<Double>@Deprecated default void add(Double k)
add in interface ListIterator<Double>@Deprecated default Double next()
next in interface DoubleIteratornext in interface Iterator<Double>next in interface ListIterator<Double>next in interface PrimitiveIterator.OfDouble@Deprecated default Double previous()
previous in interface BidirectionalIterator<Double>previous in interface DoubleBidirectionalIteratorprevious in interface ListIterator<Double>ListIterator.previous()