Uses of Interface
org.codelibs.jhighlight.fastutil.chars.CharIterator
-
Packages that use CharIterator Package Description org.codelibs.jhighlight.fastutil.chars -
-
Uses of CharIterator in org.codelibs.jhighlight.fastutil.chars
Subinterfaces of CharIterator in org.codelibs.jhighlight.fastutil.chars Modifier and Type Interface Description interfaceCharBidirectionalIteratorA type-specific bidirectional iterator; provides an additional method to avoid (un)boxing, and the possibility to skip elements backwards.interfaceCharListIteratorA type-specific bidirectional iterator that is also aListIterator.Classes in org.codelibs.jhighlight.fastutil.chars that implement CharIterator Modifier and Type Class Description classAbstractCharBidirectionalIteratorAn abstract class facilitating the creation of type-specific bidirectional iterators.classAbstractCharIteratorAn abstract class facilitating the creation of type-specific iterators.classAbstractCharListIteratorAn abstract class facilitating the creation of type-specific list iterators.static classCharIterators.EmptyIteratorA class returning no elements and a type-specific iterator interface.static classCharIterators.UnmodifiableBidirectionalIteratorAn unmodifiable wrapper class for bidirectional iterators.static classCharIterators.UnmodifiableIteratorAn unmodifiable wrapper class for iterators.static classCharIterators.UnmodifiableListIteratorAn unmodifiable wrapper class for list iterators.Fields in org.codelibs.jhighlight.fastutil.chars declared as CharIterator Modifier and Type Field Description protected CharIteratorCharIterators.UnmodifiableIterator. iMethods in org.codelibs.jhighlight.fastutil.chars that return CharIterator Modifier and Type Method Description static CharIteratorCharIterators. asCharIterator(Iterator i)Wraps a standard iterator into a type-specific iterator.CharIteratorAbstractCharCollection. charIterator()Deprecated.CharIteratorCharCollection. charIterator()Deprecated.As offastutil5, replaced byCharCollection.iterator().static CharIteratorCharIterators. concat(CharIterator[] a)Concatenates all iterators contained in an array.static CharIteratorCharIterators. concat(CharIterator[] a, int offset, int length)Concatenates a sequence of iterators contained in an array.abstract CharIteratorAbstractCharCollection. iterator()abstract CharIteratorAbstractCharSet. iterator()CharIteratorCharCollection. iterator()Returns a type-specific iterator on the elements of this collection.CharIteratorCharIterable. iterator()Returns a type-specific iterator.CharIteratorCharSet. iterator()Returns a type-specific iterator on the elements of this set.static CharIteratorCharIterators. unmodifiable(CharIterator i)Returns an unmodifiable iterator backed by the specified iterator.Methods in org.codelibs.jhighlight.fastutil.chars with parameters of type CharIterator Modifier and Type Method Description static CharIteratorCharIterators. concat(CharIterator[] a)Concatenates all iterators contained in an array.static CharIteratorCharIterators. concat(CharIterator[] a, int offset, int length)Concatenates a sequence of iterators contained in an array.static CharListCharIterators. pour(CharIterator i)Pours an iterator, returning a type-specific list.static CharListCharIterators. pour(CharIterator i, int max)Pours an iterator, returning a type-specific list, with a limit on the number of elements.static intCharIterators. pour(CharIterator i, CharCollection s)Pours an iterator into a type-specific collection.static intCharIterators. pour(CharIterator i, CharCollection s, int max)Pours an iterator into a type-specific collection, with a limit on the number of elements.static CharIteratorCharIterators. unmodifiable(CharIterator i)Returns an unmodifiable iterator backed by the specified iterator.static char[]CharIterators. unwrap(CharIterator i)Unwraps an iterator, returning an array.static intCharIterators. unwrap(CharIterator i, char[] array)Unwraps an iterator into an array.static intCharIterators. unwrap(CharIterator i, char[] array, int offset, int max)Unwraps an iterator into an array starting at a given offset for a given number of elements.static char[]CharIterators. unwrap(CharIterator i, int max)Unwraps an iterator, returning an array, with a limit on the number of elements.static longCharIterators. unwrap(CharIterator i, CharCollection c)Unwraps an iterator into a type-specific collection.static intCharIterators. unwrap(CharIterator i, CharCollection c, int max)Unwraps an iterator into a type-specific collection, with a limit on the number of elements.Constructors in org.codelibs.jhighlight.fastutil.chars with parameters of type CharIterator Constructor Description CharArrayList(CharIterator i)Creates a new array list and fills it with the elements returned by a type-specific iterator..UnmodifiableIterator(CharIterator i)
-