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