BidirectionalIterator<java.lang.Double>, BigListIterator<java.lang.Double>, DoubleBidirectionalIterator, DoubleIterator, java.util.Iterator<java.lang.Double>, ObjectBidirectionalIterator<java.lang.Double>, ObjectIterator<java.lang.Double>, java.util.PrimitiveIterator<java.lang.Double,java.util.function.DoubleConsumer>, java.util.PrimitiveIterator.OfDoubleAbstractDoubleBigListIterator, DoubleBigListIterators.BigListIteratorListIterator, DoubleBigListIterators.EmptyBigListIterator, DoubleBigListIterators.UnmodifiableBigListIteratorpublic interface DoubleBigListIterator extends DoubleBidirectionalIterator, BigListIterator<java.lang.Double>
BigListIterator.BigListIterator| Modifier and Type | Method | Description |
|---|---|---|
default void |
add(double k) |
Inserts the specified element into the list (optional operation).
|
default void |
add(java.lang.Double k) |
Deprecated.
Please use the corresponding type-specific method instead.
|
default long |
back(long n) |
Moves back for the given number of elements.
|
default void |
set(double k) |
Replaces the last element returned by
next()
or previous() with the specified element
(optional operation). |
default void |
set(java.lang.Double k) |
Deprecated.
Please use the corresponding type-specific method instead.
|
default int |
skip(int n) |
Skips the given number of elements.
|
default long |
skip(long n) |
Skips the given number of elements.
|
hasPreviousnextIndex, previousIndexback, previous, previousDoubleforEachRemaining, next, nextDoubledefault void set(double k)
next()
or previous() with the specified element
(optional operation).ListIterator.set(Object)default void add(double k)
ListIterator.add(Object)@Deprecated default void set(java.lang.Double k)
DoubleIterator.next() or DoubleBidirectionalIterator.previous()
with the specified element (optional operation).set in interface BigListIterator<java.lang.Double>k - an element.ListIterator.set(Object)@Deprecated default void add(java.lang.Double k)
add in interface BigListIterator<java.lang.Double>k - an element.ListIterator.add(Object)default long skip(long n)
The effect of this call is exactly the same as that of calling
next() for n times (possibly stopping
if Iterator.hasNext() becomes false).
n - the number of elements to skip.Iterator.next()default long back(long n)
The effect of this call is exactly the same as that of calling
previous() for n times (possibly
stopping if BidirectionalIterator.hasPrevious() becomes false).
n - the number of elements to skip back.BidirectionalIterator.previous()default int skip(int n)
The effect of this call is exactly the same as that of calling
DoubleIterator.next() for n times (possibly stopping if Iterator.hasNext()
becomes false).
skip in interface DoubleBidirectionalIteratorskip in interface DoubleIteratorskip in interface ObjectBidirectionalIterator<java.lang.Double>skip in interface ObjectIterator<java.lang.Double>n - the number of elements to skip.Iterator.next()