Uses of Interface
org.apache.commons.collections4.MapIterator
Package
Description
Interfaces and utilities shared across all packages.
Implements the
Iterator
interface.Implements the
MultiValuedMap
interfaces.Implements the "split map" concept.
-
Uses of MapIterator in org.apache.commons.collections4
Modifier and TypeInterfaceDescriptioninterface
OrderedMapIterator<K,
V> Defines an iterator that operates over an orderedMap
.Modifier and TypeFieldDescriptionstatic final MapIterator
IteratorUtils.EMPTY_MAP_ITERATOR
A map iterator over no elements.Modifier and TypeMethodDescriptionstatic <K,
V> MapIterator<K, V> IteratorUtils.emptyMapIterator()
Gets an empty map iterator.IterableGet.mapIterator()
Obtains aMapIterator
over the map.MultiValuedMap.mapIterator()
Obtains aMapIterator
over this multivalued map.static <K,
V> MapIterator<K, V> IteratorUtils.unmodifiableMapIterator
(MapIterator<K, V> mapIterator) Gets an immutable version of aMapIterator
.Modifier and TypeMethodDescriptionstatic <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
Modifier and TypeClassDescriptionprotected static class
Inner class MapIterator.protected static class
Inner class MapIterator.Modifier and TypeMethodDescriptionAbstractBidiMapDecorator.mapIterator()
AbstractDualBidiMap.mapIterator()
Obtains aMapIterator
over the map.UnmodifiableBidiMap.mapIterator()
-
Uses of MapIterator in org.apache.commons.collections4.iterators
Modifier and TypeClassDescriptionclass
Provides basic behavior for decorating a map iterator with extra functionality.class
Provides basic behavior for decorating an ordered map iterator with extra functionality.class
EmptyMapIterator<K,
V> Provides an implementation of an empty map iterator.class
Provides an implementation of an empty ordered map iterator.class
EntrySetMapIterator<K,
V> Implements aMapIterator
using a Map entrySet.final class
Decorates a map iterator such that it cannot be modified.final class
Decorates an ordered map iterator such that it cannot be modified.Modifier and TypeFieldDescriptionstatic final MapIterator
EmptyMapIterator.INSTANCE
Singleton instance of the iterator.Modifier and TypeMethodDescriptionstatic <K,
V> MapIterator<K, V> EmptyMapIterator.emptyMapIterator()
Gets 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.Modifier and TypeMethodDescriptionstatic <K,
V> MapIterator<K, V> UnmodifiableMapIterator.unmodifiableMapIterator
(MapIterator<? extends K, ? extends V> iterator) Decorates the specified iterator such that it cannot be modified.ModifierConstructorDescriptionAbstractMapIteratorDecorator
(MapIterator<K, V> iterator) Constructor that decorates the specified iterator. -
Uses of MapIterator in org.apache.commons.collections4.map
Modifier and TypeClassDescriptionprotected static class
MapIterator implementation.protected static class
MapIterator implementation.protected static class
OrderedMapIterator implementation.class
Adapts a Map entrySet to the MapIterator interface.Modifier and TypeMethodDescriptionAbstractHashedMap.mapIterator()
Gets an iterator over the map.AbstractIterableMap.mapIterator()
Obtains aMapIterator
over the map.AbstractReferenceMap.mapIterator()
Gets a MapIterator over the reference map.Flat3Map.mapIterator()
Gets an iterator over the map.MapIterator<MultiKey<? extends K>,
V> MultiKeyMap.mapIterator()
UnmodifiableMap.mapIterator()
-
Uses of MapIterator in org.apache.commons.collections4.multimap
Modifier and TypeMethodDescriptionAbstractMultiValuedMap.mapIterator()
AbstractMultiValuedMapDecorator.mapIterator()
UnmodifiableMultiValuedMap.mapIterator()
-
Uses of MapIterator in org.apache.commons.collections4.splitmap
Modifier and TypeMethodDescriptionAbstractIterableGetMapDecorator.mapIterator()
Gets a MapIterator over this Get.