Uses of Interface
org.codelibs.jhighlight.fastutil.objects.ObjectIterator
-
Packages that use ObjectIterator Package Description org.codelibs.jhighlight.fastutil.chars org.codelibs.jhighlight.fastutil.objects -
-
Uses of ObjectIterator in org.codelibs.jhighlight.fastutil.chars
Subinterfaces of ObjectIterator 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 ObjectIterator Modifier and Type Class Description classAbstractCharBidirectionalIteratorAn abstract class facilitating the creation of type-specific bidirectional 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.UnmodifiableListIteratorAn unmodifiable wrapper class for list iterators.Methods in org.codelibs.jhighlight.fastutil.chars that return ObjectIterator Modifier and Type Method Description ObjectIterator<Char2ObjectMap.Entry<V>>Char2ObjectMap.FastEntrySet. fastIterator()Returns a fast iterator over this entry set; the iterator might return always the same entry object, suitably mutated. -
Uses of ObjectIterator in org.codelibs.jhighlight.fastutil.objects
Subinterfaces of ObjectIterator in org.codelibs.jhighlight.fastutil.objects Modifier and Type Interface Description interfaceObjectBidirectionalIterator<K>A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing, and the possibility to skip elements backwards.interfaceObjectListIterator<K>A type-specific bidirectional iterator that is also aListIterator.Classes in org.codelibs.jhighlight.fastutil.objects that implement ObjectIterator Modifier and Type Class Description classAbstractObjectBidirectionalIterator<K>An abstract class facilitating the creation of type-specific bidirectional iterators.classAbstractObjectIterator<K>An abstract class facilitating the creation of type-specific iterators.classAbstractObjectListIterator<K>An abstract class facilitating the creation of type-specific list iterators.static classObjectIterators.EmptyIterator<K>A class returning no elements and a type-specific iterator interface.static classObjectIterators.UnmodifiableBidirectionalIterator<K>An unmodifiable wrapper class for bidirectional iterators.static classObjectIterators.UnmodifiableIterator<K>An unmodifiable wrapper class for iterators.static classObjectIterators.UnmodifiableListIterator<K>An unmodifiable wrapper class for list iterators.Fields in org.codelibs.jhighlight.fastutil.objects declared as ObjectIterator Modifier and Type Field Description protected ObjectIterator<K>ObjectIterators.UnmodifiableIterator. iMethods in org.codelibs.jhighlight.fastutil.objects that return ObjectIterator Modifier and Type Method Description static <K> ObjectIterator<K>ObjectIterators. asObjectIterator(Iterator<K> i)Wraps a standard iterator into a type-specific iterator.static <K> ObjectIterator<K>ObjectIterators. concat(ObjectIterator<? extends K>[] a)Concatenates all iterators contained in an array.static <K> ObjectIterator<K>ObjectIterators. concat(ObjectIterator<? extends K>[] a, int offset, int length)Concatenates a sequence of iterators contained in an array.abstract ObjectIterator<K>AbstractObjectCollection. iterator()abstract ObjectIterator<K>AbstractObjectSet. iterator()ObjectIterator<K>ObjectCollection. iterator()Returns a type-specific iterator on the elements of this collection.ObjectIterator<K>ObjectIterable. iterator()Returns a type-specific iterator.ObjectIterator<K>ObjectSet. iterator()Returns a type-specific iterator on the elements of this set.ObjectIterator<K>AbstractObjectCollection. objectIterator()Deprecated.ObjectIterator<K>ObjectCollection. objectIterator()Deprecated.As offastutil5, replaced byObjectCollection.iterator().static <K> ObjectIterator<K>ObjectIterators. unmodifiable(ObjectIterator<K> i)Returns an unmodifiable iterator backed by the specified iterator.Methods in org.codelibs.jhighlight.fastutil.objects with parameters of type ObjectIterator Modifier and Type Method Description static <K> ObjectIterator<K>ObjectIterators. concat(ObjectIterator<? extends K>[] a)Concatenates all iterators contained in an array.static <K> ObjectIterator<K>ObjectIterators. concat(ObjectIterator<? extends K>[] a, int offset, int length)Concatenates a sequence of iterators contained in an array.static <K> ObjectIterator<K>ObjectIterators. unmodifiable(ObjectIterator<K> i)Returns an unmodifiable iterator backed by the specified iterator.Constructors in org.codelibs.jhighlight.fastutil.objects with parameters of type ObjectIterator Constructor Description ObjectArrayList(ObjectIterator<? extends K> i)Creates a new array list and fills it with the elements returned by a type-specific iterator..UnmodifiableIterator(ObjectIterator<K> i)
-