Uses of Interface
org.apache.commons.collections4.ResettableListIterator
Package
Description
Interfaces and utilities shared across all packages.
Implements the
Iterator
interface.-
Uses of ResettableListIterator in org.apache.commons.collections4
Modifier and TypeFieldDescriptionstatic final ResettableListIterator
IteratorUtils.EMPTY_LIST_ITERATOR
A list iterator over no elements.Modifier and TypeMethodDescriptionstatic <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
(Object array) Gets a list iterator over an object or primitive array.static <E> ResettableListIterator<E>
IteratorUtils.arrayListIterator
(Object array, int start) Gets a list iterator over the end part of an object or primitive array.static <E> ResettableListIterator<E>
IteratorUtils.arrayListIterator
(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
(List<E> list) Gets an iterator that loops continuously over the supplied list. -
Uses of ResettableListIterator in org.apache.commons.collections4.iterators
Modifier and TypeClassDescriptionclass
Implements aListIterator
over an array.class
Provides an implementation of an empty list iterator.class
Converts anIterator
into aResettableListIterator
.class
A ListIterator that restarts when it reaches the end or when it reaches the beginning.class
Implements aListIterator
over an array of objects.class
Iterates backwards through a List, starting with the last element and continuing to the first.class
SingletonIterator
is anListIterator
over a single object instance.Modifier and TypeFieldDescriptionstatic final ResettableListIterator
EmptyListIterator.RESETTABLE_INSTANCE
Singleton instance of the iterator.Modifier and TypeMethodDescriptionstatic <E> ResettableListIterator<E>
EmptyListIterator.resettableEmptyListIterator()
Gets a typed instance of the iterator.