Uses of Interface
org.apache.commons.collections4.ResettableListIterator
-
Packages that use ResettableListIterator 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.iterators This package contains implementations of theIteratorinterface. -
-
Uses of ResettableListIterator in org.apache.commons.collections4
Fields in org.apache.commons.collections4 declared as ResettableListIterator Modifier and Type Field Description static ResettableListIteratorIteratorUtils. EMPTY_LIST_ITERATORA list iterator over no elements.Methods in org.apache.commons.collections4 that return ResettableListIterator Modifier and Type Method Description static <E> ResettableListIterator<E>IteratorUtils. arrayListIterator(E... array)Gets a list iterator over an object array.static <E> ResettableListIterator<E>IteratorUtils. arrayListIterator(E[] array, int start)Gets a list iterator over the end part of an object array.static <E> ResettableListIterator<E>IteratorUtils. arrayListIterator(E[] array, int start, int end)Gets a list iterator over part of an object array.static <E> ResettableListIterator<E>IteratorUtils. arrayListIterator(java.lang.Object array)Gets a list iterator over an object or primitive array.static <E> ResettableListIterator<E>IteratorUtils. arrayListIterator(java.lang.Object array, int start)Gets a list iterator over the end part of an object or primitive array.static <E> ResettableListIterator<E>IteratorUtils. arrayListIterator(java.lang.Object array, int start, int end)Gets a list iterator over part of an object or primitive array.static <E> ResettableListIterator<E>IteratorUtils. emptyListIterator()Gets an empty list iterator.static <E> ResettableListIterator<E>IteratorUtils. loopingListIterator(java.util.List<E> list)Gets an iterator that loops continuously over the supplied list. -
Uses of ResettableListIterator in org.apache.commons.collections4.iterators
Classes in org.apache.commons.collections4.iterators that implement ResettableListIterator Modifier and Type Class Description classArrayListIterator<E>Implements aListIteratorover an array.classEmptyListIterator<E>Provides an implementation of an empty list iterator.classListIteratorWrapper<E>Converts anIteratorinto aResettableListIterator.classLoopingListIterator<E>A ListIterator that restarts when it reaches the end or when it reaches the beginning.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.classSingletonListIterator<E>SingletonIteratoris anListIteratorover a single object instance.Fields in org.apache.commons.collections4.iterators declared as ResettableListIterator Modifier and Type Field Description static ResettableListIteratorEmptyListIterator. RESETTABLE_INSTANCESingleton instance of the iterator.Methods in org.apache.commons.collections4.iterators that return ResettableListIterator Modifier and Type Method Description static <E> ResettableListIterator<E>EmptyListIterator. resettableEmptyListIterator()Get a typed instance of the iterator.
-