public interface LongListIterator extends java.util.ListIterator<java.lang.Long>, LongBidirectionalIterator
| Modifier and Type | Method and Description |
|---|---|
void |
add(long e)
A Primitive set function to reduce (un)boxing
|
default void |
add(java.lang.Long e)
Deprecated.
Please use the corresponding type-specific function instead.
|
default java.lang.Long |
next()
Deprecated.
Please use the corresponding type-specific function instead.
|
default java.lang.Long |
previous()
Deprecated.
Please use the corresponding type-specific function instead.
|
void |
set(long e)
A Primitive set function to reduce (un)boxing
|
default void |
set(java.lang.Long e)
Deprecated.
Please use the corresponding type-specific function instead.
|
hasNext, hasPrevious, nextIndex, previousIndex, removeback, hasPrevious, previousLong, skipforEachRemaining, forEachRemaining, nextLongvoid set(long e)
e - the element that should replace the last returned valueListIterator.set(Object)void add(long e)
e - the element that should be inserted before the last returned valueListIterator.set(Object)@Deprecated default java.lang.Long previous()
This default implementation delegates to the corresponding type-specific function.
This default implementation delegates to the corresponding type-specific function.
previous in interface java.util.ListIterator<java.lang.Long>previous in interface LongBidirectionalIteratorprevious in interface ObjectBidirectionalIterator<java.lang.Long>@Deprecated default java.lang.Long next()
This default implementation delegates to the corresponding type-specific function.
This default implementation delegates to the corresponding type-specific function.
next in interface java.util.Iterator<java.lang.Long>next in interface java.util.ListIterator<java.lang.Long>next in interface LongIterator@Deprecated default void set(java.lang.Long e)
This default implementation delegates to the corresponding type-specific function.
set in interface java.util.ListIterator<java.lang.Long>@Deprecated default void add(java.lang.Long e)
This default implementation delegates to the corresponding type-specific function.
add in interface java.util.ListIterator<java.lang.Long>