Uses of Interface
org.apache.commons.collections4.ResettableIterator
-
Packages that use ResettableIterator Package Description org.apache.commons.collections4 This package contains the interfaces and utilities shared across all the subpackages of this component.org.apache.commons.collections4.bidimap org.apache.commons.collections4.iterators This package contains implementations of theIteratorinterface.org.apache.commons.collections4.map -
-
Uses of ResettableIterator in org.apache.commons.collections4
Subinterfaces of ResettableIterator in org.apache.commons.collections4 Modifier and Type Interface Description interfaceResettableListIterator<E>Defines a list iterator that can be reset back to an initial state.Fields in org.apache.commons.collections4 declared as ResettableIterator Modifier and Type Field Description static ResettableIteratorIteratorUtils. EMPTY_ITERATORAn iterator over no elements.Methods in org.apache.commons.collections4 that return ResettableIterator Modifier and Type Method Description static <E> ResettableIterator<E>IteratorUtils. arrayIterator(E... array)Gets an iterator over an object array.static <E> ResettableIterator<E>IteratorUtils. arrayIterator(E[] array, int start)Gets an iterator over the end part of an object array.static <E> ResettableIterator<E>IteratorUtils. arrayIterator(E[] array, int start, int end)Gets an iterator over part of an object array.static <E> ResettableIterator<E>IteratorUtils. arrayIterator(java.lang.Object array)Gets an iterator over an object or primitive array.static <E> ResettableIterator<E>IteratorUtils. arrayIterator(java.lang.Object array, int start)Gets an iterator over the end part of an object or primitive array.static <E> ResettableIterator<E>IteratorUtils. arrayIterator(java.lang.Object array, int start, int end)Gets an iterator over part of an object or primitive array.static <E> ResettableIterator<E>IteratorUtils. emptyIterator()Gets an empty iterator.static <E> ResettableIterator<E>IteratorUtils. loopingIterator(java.util.Collection<? extends E> coll)Gets an iterator that loops continuously over the supplied collection.static <E> ResettableIterator<E>IteratorUtils. singletonIterator(E object)Gets a singleton iterator. -
Uses of ResettableIterator in org.apache.commons.collections4.bidimap
Classes in org.apache.commons.collections4.bidimap that implement ResettableIterator Modifier and Type Class Description protected static classAbstractDualBidiMap.BidiMapIterator<K,V>Inner class MapIterator.protected static classDualTreeBidiMap.BidiOrderedMapIterator<K,V>Inner class MapIterator. -
Uses of ResettableIterator in org.apache.commons.collections4.iterators
Classes in org.apache.commons.collections4.iterators that implement ResettableIterator Modifier and Type Class Description classArrayIterator<E>Implements anIteratorover any array.classArrayListIterator<E>Implements aListIteratorover an array.classEmptyIterator<E>Provides an implementation of an empty iterator.classEmptyListIterator<E>Provides an implementation of an empty list iterator.classEmptyMapIterator<K,V>Provides an implementation of an empty map iterator.classEmptyOrderedIterator<E>Provides an implementation of an empty ordered iterator.classEmptyOrderedMapIterator<K,V>Provides an implementation of an empty ordered map iterator.classEntrySetMapIterator<K,V>Implements aMapIteratorusing a Map entrySet.classListIteratorWrapper<E>Converts anIteratorinto aResettableListIterator.classLoopingIterator<E>An Iterator that restarts when it reaches the end.classLoopingListIterator<E>A ListIterator that restarts when it reaches the end or when it reaches the beginning.classObjectArrayIterator<E>AnIteratorover an array of objects.classObjectArrayListIterator<E>Implements aListIteratorover an array of objects.classReverseListIterator<E>Iterates backwards through a List, starting with the last element and continuing to the first.classSingletonIterator<E>SingletonIteratoris anIteratorover a single object instance.classSingletonListIterator<E>SingletonIteratoris anListIteratorover a single object instance.Fields in org.apache.commons.collections4.iterators declared as ResettableIterator Modifier and Type Field Description static ResettableIteratorEmptyIterator. RESETTABLE_INSTANCESingleton instance of the iterator.Methods in org.apache.commons.collections4.iterators that return ResettableIterator Modifier and Type Method Description static <E> ResettableIterator<E>EmptyIterator. resettableEmptyIterator()Get a typed resettable empty iterator instance. -
Uses of ResettableIterator in org.apache.commons.collections4.map
Classes in org.apache.commons.collections4.map that implement ResettableIterator Modifier and Type Class Description protected static classAbstractLinkedMap.EntrySetIterator<K,V>EntrySet iterator.protected static classAbstractLinkedMap.KeySetIterator<K>KeySet iterator.protected static classAbstractLinkedMap.LinkMapIterator<K,V>MapIterator implementation.protected static classAbstractLinkedMap.ValuesIterator<V>Values iterator.protected static classAbstractSortedMapDecorator.SortedMapIterator<K,V>OrderedMapIterator implementation.classEntrySetToMapIteratorAdapter<K,V>Adapts a Map entrySet to the MapIterator interface.
-