Uses of Interface
org.apache.commons.collections4.MapIterator
-
Packages that use MapIterator 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.map org.apache.commons.collections4.multimap This package contains implementations of theMultiValuedMapinterfaces.org.apache.commons.collections4.splitmap -
-
Uses of MapIterator in org.apache.commons.collections4
Subinterfaces of MapIterator in org.apache.commons.collections4 Modifier and Type Interface Description interfaceOrderedMapIterator<K,V>Defines an iterator that operates over an orderedMap.Fields in org.apache.commons.collections4 declared as MapIterator Modifier and Type Field Description static MapIteratorIteratorUtils. EMPTY_MAP_ITERATORA map iterator over no elements.Methods in org.apache.commons.collections4 that return MapIterator Modifier and Type Method Description static <K,V>
MapIterator<K,V>IteratorUtils. emptyMapIterator()Gets an empty map iterator.MapIterator<K,V>IterableGet. mapIterator()Obtains aMapIteratorover the map.MapIterator<K,V>MultiValuedMap. mapIterator()Obtains aMapIteratorover this multi-valued map.static <K,V>
MapIterator<K,V>IteratorUtils. unmodifiableMapIterator(MapIterator<K,V> mapIterator)Gets an immutable version of aMapIterator.Methods in org.apache.commons.collections4 with parameters of type MapIterator Modifier and Type Method Description static <K,V>
MapIterator<K,V>IteratorUtils. unmodifiableMapIterator(MapIterator<K,V> mapIterator)Gets an immutable version of aMapIterator. -
Uses of MapIterator in org.apache.commons.collections4.bidimap
Classes in org.apache.commons.collections4.bidimap that implement MapIterator Modifier and Type Class Description protected static classAbstractDualBidiMap.BidiMapIterator<K,V>Inner class MapIterator.protected static classDualTreeBidiMap.BidiOrderedMapIterator<K,V>Inner class MapIterator.Methods in org.apache.commons.collections4.bidimap that return MapIterator Modifier and Type Method Description MapIterator<K,V>AbstractBidiMapDecorator. mapIterator()MapIterator<K,V>AbstractDualBidiMap. mapIterator()Obtains aMapIteratorover the map.MapIterator<K,V>UnmodifiableBidiMap. mapIterator() -
Uses of MapIterator in org.apache.commons.collections4.iterators
Classes in org.apache.commons.collections4.iterators that implement MapIterator Modifier and Type Class Description classAbstractMapIteratorDecorator<K,V>Provides basic behaviour for decorating a map iterator with extra functionality.classAbstractOrderedMapIteratorDecorator<K,V>Provides basic behaviour for decorating an ordered map iterator with extra functionality.classEmptyMapIterator<K,V>Provides an implementation of an empty map iterator.classEmptyOrderedMapIterator<K,V>Provides an implementation of an empty ordered map iterator.classEntrySetMapIterator<K,V>Implements aMapIteratorusing a Map entrySet.classUnmodifiableMapIterator<K,V>Decorates a map iterator such that it cannot be modified.classUnmodifiableOrderedMapIterator<K,V>Decorates an ordered map iterator such that it cannot be modified.Fields in org.apache.commons.collections4.iterators declared as MapIterator Modifier and Type Field Description static MapIteratorEmptyMapIterator. INSTANCESingleton instance of the iterator.Methods in org.apache.commons.collections4.iterators that return MapIterator Modifier and Type Method Description static <K,V>
MapIterator<K,V>EmptyMapIterator. emptyMapIterator()Get a typed instance of the iterator.protected MapIterator<K,V>AbstractMapIteratorDecorator. getMapIterator()Gets the iterator being decorated.static <K,V>
MapIterator<K,V>UnmodifiableMapIterator. unmodifiableMapIterator(MapIterator<? extends K,? extends V> iterator)Decorates the specified iterator such that it cannot be modified.Methods in org.apache.commons.collections4.iterators with parameters of type MapIterator Modifier and Type Method Description static <K,V>
MapIterator<K,V>UnmodifiableMapIterator. unmodifiableMapIterator(MapIterator<? extends K,? extends V> iterator)Decorates the specified iterator such that it cannot be modified.Constructors in org.apache.commons.collections4.iterators with parameters of type MapIterator Constructor Description AbstractMapIteratorDecorator(MapIterator<K,V> iterator)Constructor that decorates the specified iterator. -
Uses of MapIterator in org.apache.commons.collections4.map
Classes in org.apache.commons.collections4.map that implement MapIterator Modifier and Type Class Description protected static classAbstractHashedMap.HashMapIterator<K,V>MapIterator implementation.protected static classAbstractLinkedMap.LinkMapIterator<K,V>MapIterator implementation.protected static classAbstractSortedMapDecorator.SortedMapIterator<K,V>OrderedMapIterator implementation.classEntrySetToMapIteratorAdapter<K,V>Adapts a Map entrySet to the MapIterator interface.Methods in org.apache.commons.collections4.map that return MapIterator Modifier and Type Method Description MapIterator<K,V>AbstractHashedMap. mapIterator()Gets an iterator over the map.MapIterator<K,V>AbstractIterableMap. mapIterator()Obtains aMapIteratorover the map.MapIterator<K,V>AbstractReferenceMap. mapIterator()Gets a MapIterator over the reference map.MapIterator<K,V>Flat3Map. mapIterator()Gets an iterator over the map.MapIterator<MultiKey<? extends K>,V>MultiKeyMap. mapIterator()MapIterator<K,V>UnmodifiableMap. mapIterator() -
Uses of MapIterator in org.apache.commons.collections4.multimap
Methods in org.apache.commons.collections4.multimap that return MapIterator Modifier and Type Method Description MapIterator<K,V>AbstractMultiValuedMap. mapIterator()MapIterator<K,V>AbstractMultiValuedMapDecorator. mapIterator()MapIterator<K,V>UnmodifiableMultiValuedMap. mapIterator() -
Uses of MapIterator in org.apache.commons.collections4.splitmap
Methods in org.apache.commons.collections4.splitmap that return MapIterator Modifier and Type Method Description MapIterator<K,V>AbstractIterableGetMapDecorator. mapIterator()Get a MapIterator over this Get.
-