Uses of Interface
org.apache.commons.collections4.OrderedIterator
-
Packages that use OrderedIterator 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 theIterator
interface.org.apache.commons.collections4.list This package contains implementations of theList
interface.org.apache.commons.collections4.map org.apache.commons.collections4.set -
-
Uses of OrderedIterator in org.apache.commons.collections4
Subinterfaces of OrderedIterator in org.apache.commons.collections4 Modifier and Type Interface Description interface
OrderedMapIterator<K,V>
Defines an iterator that operates over an orderedMap
.interface
ResettableListIterator<E>
Defines a list iterator that can be reset back to an initial state.Fields in org.apache.commons.collections4 declared as OrderedIterator Modifier and Type Field Description static OrderedIterator
IteratorUtils. EMPTY_ORDERED_ITERATOR
An ordered iterator over no elements.Methods in org.apache.commons.collections4 that return OrderedIterator Modifier and Type Method Description static <E> OrderedIterator<E>
IteratorUtils. emptyOrderedIterator()
Gets an empty ordered iterator. -
Uses of OrderedIterator in org.apache.commons.collections4.bidimap
Classes in org.apache.commons.collections4.bidimap that implement OrderedIterator Modifier and Type Class Description protected static class
DualTreeBidiMap.BidiOrderedMapIterator<K,V>
Inner class MapIterator. -
Uses of OrderedIterator in org.apache.commons.collections4.iterators
Classes in org.apache.commons.collections4.iterators that implement OrderedIterator Modifier and Type Class Description class
AbstractOrderedMapIteratorDecorator<K,V>
Provides basic behaviour for decorating an ordered map iterator with extra functionality.class
ArrayListIterator<E>
Implements aListIterator
over an array.class
EmptyListIterator<E>
Provides an implementation of an empty list iterator.class
EmptyOrderedIterator<E>
Provides an implementation of an empty ordered iterator.class
EmptyOrderedMapIterator<K,V>
Provides an implementation of an empty ordered map iterator.class
ListIteratorWrapper<E>
Converts anIterator
into aResettableListIterator
.class
LoopingListIterator<E>
A ListIterator that restarts when it reaches the end or when it reaches the beginning.class
ObjectArrayListIterator<E>
Implements aListIterator
over an array of objects.class
ReverseListIterator<E>
Iterates backwards through a List, starting with the last element and continuing to the first.class
SingletonListIterator<E>
SingletonIterator
is anListIterator
over a single object instance.class
UnmodifiableOrderedMapIterator<K,V>
Decorates an ordered map iterator such that it cannot be modified.Fields in org.apache.commons.collections4.iterators declared as OrderedIterator Modifier and Type Field Description static OrderedIterator
EmptyOrderedIterator. INSTANCE
Singleton instance of the iterator.Methods in org.apache.commons.collections4.iterators that return OrderedIterator Modifier and Type Method Description static <E> OrderedIterator<E>
EmptyOrderedIterator. emptyOrderedIterator()
Typed instance of the iterator. -
Uses of OrderedIterator in org.apache.commons.collections4.list
Classes in org.apache.commons.collections4.list that implement OrderedIterator Modifier and Type Class Description protected static class
AbstractLinkedList.LinkedListIterator<E>
A list iterator over the linked list.protected static class
AbstractLinkedList.LinkedSubListIterator<E>
A list iterator over the linked sub list.static class
CursorableLinkedList.Cursor<E>
An extendedListIterator
that allows concurrent changes to the underlying list.protected static class
CursorableLinkedList.SubCursor<E>
A cursor for the sublist based on LinkedSubListIterator. -
Uses of OrderedIterator in org.apache.commons.collections4.map
Classes in org.apache.commons.collections4.map that implement OrderedIterator Modifier and Type Class Description protected static class
AbstractLinkedMap.EntrySetIterator<K,V>
EntrySet iterator.protected static class
AbstractLinkedMap.KeySetIterator<K>
KeySet iterator.protected static class
AbstractLinkedMap.LinkMapIterator<K,V>
MapIterator implementation.protected static class
AbstractLinkedMap.ValuesIterator<V>
Values iterator.protected static class
AbstractSortedMapDecorator.SortedMapIterator<K,V>
OrderedMapIterator implementation. -
Uses of OrderedIterator in org.apache.commons.collections4.set
Methods in org.apache.commons.collections4.set that return OrderedIterator Modifier and Type Method Description OrderedIterator<E>
ListOrderedSet. iterator()
-