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 theIteratorinterface.org.apache.commons.collections4.list This package contains implementations of theListinterface.org.apache.commons.collections4.map org.apache.commons.collections4.set This package contains implementations of theSet,SortedSetandNavigableSetinterfaces. -
-
Uses of OrderedIterator in org.apache.commons.collections4
Subinterfaces of OrderedIterator in org.apache.commons.collections4 Modifier and Type Interface Description interfaceOrderedMapIterator<K,V>Defines an iterator that operates over an orderedMap.interfaceResettableListIterator<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 OrderedIteratorIteratorUtils. EMPTY_ORDERED_ITERATORAn 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 classDualTreeBidiMap.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 classAbstractOrderedMapIteratorDecorator<K,V>Provides basic behaviour for decorating an ordered map iterator with extra functionality.classArrayListIterator<E>Implements aListIteratorover an array.classEmptyListIterator<E>Provides an implementation of an empty list iterator.classEmptyOrderedIterator<E>Provides an implementation of an empty ordered iterator.classEmptyOrderedMapIterator<K,V>Provides an implementation of an empty ordered map 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.classUnmodifiableOrderedMapIterator<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 OrderedIteratorEmptyOrderedIterator. INSTANCESingleton 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 classAbstractLinkedList.LinkedListIterator<E>A list iterator over the linked list.protected static classAbstractLinkedList.LinkedSubListIterator<E>A list iterator over the linked sub list.static classCursorableLinkedList.Cursor<E>An extendedListIteratorthat allows concurrent changes to the underlying list.protected static classCursorableLinkedList.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 classAbstractLinkedMap.EntrySetIterator<K,V>EntrySet iterator.protected static classAbstractLinkedMap.KeySetIterator<K>KeySet iterator.protected static classAbstractLinkedMap.LinkMapIterator<K,V>MapIterator implementation.protected static classAbstractLinkedMap.ValuesIterator<V>Values iterator.protected static classAbstractSortedMapDecorator.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()
-