Uses of Interface
org.apache.commons.collections.ResettableIterator
-
Packages that use ResettableIterator Package Description org.apache.commons.collections This package contains the interfaces and utilities shared across all the subpackages of this component.org.apache.commons.collections.bidimap org.apache.commons.collections.iterators This package contains implementations of theIteratorinterface.org.apache.commons.collections.map -
-
Uses of ResettableIterator in org.apache.commons.collections
Subinterfaces of ResettableIterator in org.apache.commons.collections Modifier and Type Interface Description interfaceResettableListIteratorDefines a list iterator that can be reset back to an initial state.Fields in org.apache.commons.collections declared as ResettableIterator Modifier and Type Field Description static ResettableIteratorIteratorUtils. EMPTY_ITERATORAn iterator over no elements.Methods in org.apache.commons.collections that return ResettableIterator Modifier and Type Method Description static ResettableIteratorIteratorUtils. arrayIterator(java.lang.Object array)Gets an iterator over an object or primitive array.static ResettableIteratorIteratorUtils. arrayIterator(java.lang.Object[] array)Gets an iterator over an object array.static ResettableIteratorIteratorUtils. arrayIterator(java.lang.Object[] array, int start)Gets an iterator over the end part of an object array.static ResettableIteratorIteratorUtils. arrayIterator(java.lang.Object[] array, int start, int end)Gets an iterator over part of an object array.static ResettableIteratorIteratorUtils. arrayIterator(java.lang.Object array, int start)Gets an iterator over the end part of an object or primitive array.static ResettableIteratorIteratorUtils. arrayIterator(java.lang.Object array, int start, int end)Gets an iterator over part of an object or primitive array.static ResettableIteratorIteratorUtils. emptyIterator()Gets an empty iterator.static ResettableIteratorIteratorUtils. loopingIterator(java.util.Collection coll)Gets an iterator that loops continuously over the supplied collection.static ResettableIteratorIteratorUtils. singletonIterator(java.lang.Object object)Gets a singleton iterator. -
Uses of ResettableIterator in org.apache.commons.collections.bidimap
Classes in org.apache.commons.collections.bidimap that implement ResettableIterator Modifier and Type Class Description protected static classAbstractDualBidiMap.BidiMapIteratorInner class MapIterator.protected static classDualTreeBidiMap.BidiOrderedMapIteratorInner class MapIterator. -
Uses of ResettableIterator in org.apache.commons.collections.iterators
Classes in org.apache.commons.collections.iterators that implement ResettableIterator Modifier and Type Class Description classArrayIteratorImplements anIteratorover any array.classArrayListIteratorImplements aListIteratorover an array.classEmptyIteratorProvides an implementation of an empty iterator.classEmptyListIteratorProvides an implementation of an empty list iterator.classEmptyMapIteratorProvides an implementation of an empty map iterator.classEmptyOrderedIteratorProvides an implementation of an empty ordered iterator.classEmptyOrderedMapIteratorProvides an implementation of an empty ordered map iterator.classEntrySetMapIteratorImplements aMapIteratorusing a Map entrySet.classListIteratorWrapperConverts an iterator into a list iterator by caching the returned entries.classLoopingIteratorAn Iterator that restarts when it reaches the end.classLoopingListIteratorA ListIterator that restarts when it reaches the end or when it reaches the beginning.classObjectArrayIteratorAnIteratorover an array of objects.classObjectArrayListIteratorImplements aListIteratorover an array of objects.classReverseListIteratorIterates backwards through a List, starting with the last element and continuing to the first.classSingletonIteratorSingletonIteratoris anIteratorover a single object instance.classSingletonListIteratorSingletonIteratoris anListIteratorover a single object instance.Fields in org.apache.commons.collections.iterators declared as ResettableIterator Modifier and Type Field Description static ResettableIteratorEmptyIterator. RESETTABLE_INSTANCESingleton instance of the iterator. -
Uses of ResettableIterator in org.apache.commons.collections.map
Classes in org.apache.commons.collections.map that implement ResettableIterator Modifier and Type Class Description protected static classAbstractLinkedMap.EntrySetIteratorEntrySet iterator.protected static classAbstractLinkedMap.KeySetIteratorKeySet iterator.protected static classAbstractLinkedMap.LinkIteratorBase Iterator that iterates in link order.protected static classAbstractLinkedMap.LinkMapIteratorMapIterator implementation.protected static classAbstractLinkedMap.ValuesIteratorValues iterator.
-