Interface CharListIterator
-
- All Superinterfaces:
BidirectionalIterator<Character>,CharBidirectionalIterator,CharIterator,Iterator<Character>,ListIterator<Character>,ObjectBidirectionalIterator<Character>,ObjectIterator<Character>
- All Known Implementing Classes:
AbstractCharListIterator,CharIterators.EmptyIterator,CharIterators.UnmodifiableListIterator
public interface CharListIterator extends ListIterator<Character>, CharBidirectionalIterator
A type-specific bidirectional iterator that is also aListIterator.This interface merges the methods provided by a
ListIteratorand a type-specificBidirectionalIterator. Moreover, it provides type-specific versions ofadd()andset().- See Also:
ListIterator,BidirectionalIterator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(char k)voidset(char k)-
Methods inherited from interface org.codelibs.jhighlight.fastutil.BidirectionalIterator
hasPrevious, previous
-
Methods inherited from interface org.codelibs.jhighlight.fastutil.chars.CharBidirectionalIterator
back, previousChar
-
Methods inherited from interface org.codelibs.jhighlight.fastutil.chars.CharIterator
nextChar, skip
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Methods inherited from interface java.util.ListIterator
add, hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove, set
-
Methods inherited from interface org.codelibs.jhighlight.fastutil.objects.ObjectIterator
skip
-
-