Uses of Interface
org.apache.commons.collections.ResettableListIterator
-
Packages that use ResettableListIterator 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.iterators This package contains implementations of theIteratorinterface. -
-
Uses of ResettableListIterator in org.apache.commons.collections
Fields in org.apache.commons.collections declared as ResettableListIterator Modifier and Type Field Description static ResettableListIteratorIteratorUtils. EMPTY_LIST_ITERATORA list iterator over no elements.Methods in org.apache.commons.collections that return ResettableListIterator Modifier and Type Method Description static ResettableListIteratorIteratorUtils. arrayListIterator(java.lang.Object array)Gets a list iterator over an object or primitive array.static ResettableListIteratorIteratorUtils. arrayListIterator(java.lang.Object[] array)Gets a list iterator over an object array.static ResettableListIteratorIteratorUtils. arrayListIterator(java.lang.Object[] array, int start)Gets a list iterator over the end part of an object array.static ResettableListIteratorIteratorUtils. arrayListIterator(java.lang.Object[] array, int start, int end)Gets a list iterator over part of an object array.static ResettableListIteratorIteratorUtils. arrayListIterator(java.lang.Object array, int start)Gets a list iterator over the end part of an object or primitive array.static ResettableListIteratorIteratorUtils. arrayListIterator(java.lang.Object array, int start, int end)Gets a list iterator over part of an object or primitive array.static ResettableListIteratorIteratorUtils. emptyListIterator()Gets an empty list iterator.static ResettableListIteratorIteratorUtils. loopingListIterator(java.util.List list)Gets an iterator that loops continuously over the supplied list. -
Uses of ResettableListIterator in org.apache.commons.collections.iterators
Classes in org.apache.commons.collections.iterators that implement ResettableListIterator Modifier and Type Class Description classArrayListIteratorImplements aListIteratorover an array.classEmptyListIteratorProvides an implementation of an empty list iterator.classListIteratorWrapperConverts an iterator into a list iterator by caching the returned entries.classLoopingListIteratorA ListIterator that restarts when it reaches the end or when it reaches the beginning.classObjectArrayListIteratorImplements aListIteratorover an array of objects.classReverseListIteratorIterates backwards through a List, starting with the last element and continuing to the first.classSingletonListIteratorSingletonIteratoris anListIteratorover a single object instance.Fields in org.apache.commons.collections.iterators declared as ResettableListIterator Modifier and Type Field Description static ResettableListIteratorEmptyListIterator. RESETTABLE_INSTANCESingleton instance of the iterator.
-