public interface ShortListIterator extends java.util.ListIterator<java.lang.Short>, ShortBidirectionalIterator
| Modifier and Type | Method and Description |
|---|---|
void |
add(short e)
A Primitive set function to reduce (un)boxing
|
default void |
add(java.lang.Short e)
Deprecated.
Please use the corresponding type-specific function instead.
|
default java.lang.Short |
next()
Deprecated.
Please use the corresponding type-specific function instead.
|
default java.lang.Short |
previous()
Deprecated.
Please use the corresponding type-specific function instead.
|
void |
set(short e)
A Primitive set function to reduce (un)boxing
|
default void |
set(java.lang.Short e)
Deprecated.
Please use the corresponding type-specific function instead.
|
hasNext, hasPrevious, nextIndex, previousIndex, removeback, hasPrevious, previousShort, skipforEachRemaining, forEachRemaining, nextShortvoid set(short e)
e - the element that should replace the last returned valueListIterator.set(Object)void add(short e)
e - the element that should be inserted before the last returned valueListIterator.set(Object)@Deprecated default java.lang.Short 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.Short>previous in interface ObjectBidirectionalIterator<java.lang.Short>previous in interface ShortBidirectionalIterator@Deprecated default java.lang.Short 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.Short>next in interface java.util.ListIterator<java.lang.Short>next in interface ShortIterator@Deprecated default void set(java.lang.Short e)
This default implementation delegates to the corresponding type-specific function.
set in interface java.util.ListIterator<java.lang.Short>@Deprecated default void add(java.lang.Short e)
This default implementation delegates to the corresponding type-specific function.
add in interface java.util.ListIterator<java.lang.Short>