Uses of Interface
org.apache.commons.collections.MapIterator
-
Packages that use MapIterator Package Description org.apache.commons.collections This package contains the interfaces and utilities shared across all the subpackages of this component.org.apache.commons.collections.bidimap org.apache.commons.collections.iterators This package contains implementations of theIterator
interface.org.apache.commons.collections.map -
-
Uses of MapIterator in org.apache.commons.collections
Subinterfaces of MapIterator in org.apache.commons.collections Modifier and Type Interface Description interface
OrderedMapIterator
Defines an iterator that operates over an orderedMap
.Fields in org.apache.commons.collections declared as MapIterator Modifier and Type Field Description static MapIterator
IteratorUtils. EMPTY_MAP_ITERATOR
A map iterator over no elements.Methods in org.apache.commons.collections that return MapIterator Modifier and Type Method Description static MapIterator
IteratorUtils. emptyMapIterator()
Gets an empty map iterator.MapIterator
BidiMap. mapIterator()
Obtains aMapIterator
over the map.MapIterator
IterableMap. mapIterator()
Obtains aMapIterator
over the map.static MapIterator
IteratorUtils. unmodifiableMapIterator(MapIterator mapIterator)
Gets an immutable version of aMapIterator
.Methods in org.apache.commons.collections with parameters of type MapIterator Modifier and Type Method Description static MapIterator
IteratorUtils. unmodifiableMapIterator(MapIterator mapIterator)
Gets an immutable version of aMapIterator
. -
Uses of MapIterator in org.apache.commons.collections.bidimap
Classes in org.apache.commons.collections.bidimap that implement MapIterator Modifier and Type Class Description protected static class
AbstractDualBidiMap.BidiMapIterator
Inner class MapIterator.protected static class
DualTreeBidiMap.BidiOrderedMapIterator
Inner class MapIterator.Methods in org.apache.commons.collections.bidimap that return MapIterator Modifier and Type Method Description MapIterator
AbstractBidiMapDecorator. mapIterator()
MapIterator
AbstractDualBidiMap. mapIterator()
Obtains aMapIterator
over the map.MapIterator
TreeBidiMap. mapIterator()
Gets an iterator over the map entries.MapIterator
UnmodifiableBidiMap. mapIterator()
MapIterator
UnmodifiableOrderedBidiMap. mapIterator()
MapIterator
UnmodifiableSortedBidiMap. mapIterator()
-
Uses of MapIterator in org.apache.commons.collections.iterators
Classes in org.apache.commons.collections.iterators that implement MapIterator Modifier and Type Class Description class
AbstractMapIteratorDecorator
Provides basic behaviour for decorating a map iterator with extra functionality.class
AbstractOrderedMapIteratorDecorator
Provides basic behaviour for decorating an ordered map iterator with extra functionality.class
EmptyMapIterator
Provides an implementation of an empty map iterator.class
EmptyOrderedMapIterator
Provides an implementation of an empty ordered map iterator.class
EntrySetMapIterator
Implements aMapIterator
using a Map entrySet.class
UnmodifiableMapIterator
Decorates a map iterator such that it cannot be modified.class
UnmodifiableOrderedMapIterator
Decorates an ordered map iterator such that it cannot be modified.Fields in org.apache.commons.collections.iterators declared as MapIterator Modifier and Type Field Description static MapIterator
EmptyMapIterator. INSTANCE
Singleton instance of the iterator.protected MapIterator
AbstractMapIteratorDecorator. iterator
The iterator being decoratedMethods in org.apache.commons.collections.iterators that return MapIterator Modifier and Type Method Description static MapIterator
UnmodifiableMapIterator. decorate(MapIterator iterator)
Decorates the specified iterator such that it cannot be modified.protected MapIterator
AbstractMapIteratorDecorator. getMapIterator()
Gets the iterator being decorated.Methods in org.apache.commons.collections.iterators with parameters of type MapIterator Modifier and Type Method Description static MapIterator
UnmodifiableMapIterator. decorate(MapIterator iterator)
Decorates the specified iterator such that it cannot be modified.Constructors in org.apache.commons.collections.iterators with parameters of type MapIterator Constructor Description AbstractMapIteratorDecorator(MapIterator iterator)
Constructor that decorates the specified iterator. -
Uses of MapIterator in org.apache.commons.collections.map
Classes in org.apache.commons.collections.map that implement MapIterator Modifier and Type Class Description protected static class
AbstractHashedMap.HashMapIterator
MapIterator implementation.protected static class
AbstractLinkedMap.LinkMapIterator
MapIterator implementation.Methods in org.apache.commons.collections.map that return MapIterator Modifier and Type Method Description MapIterator
AbstractHashedMap. mapIterator()
Gets an iterator over the map.MapIterator
AbstractLinkedMap. mapIterator()
Gets an iterator over the map.MapIterator
AbstractOrderedMapDecorator. mapIterator()
MapIterator
AbstractReferenceMap. mapIterator()
Gets a MapIterator over the reference map.MapIterator
Flat3Map. mapIterator()
Gets an iterator over the map.MapIterator
ListOrderedMap. mapIterator()
MapIterator
MultiKeyMap. mapIterator()
MapIterator
SingletonMap. mapIterator()
Gets an iterator over the map.MapIterator
UnmodifiableMap. mapIterator()
MapIterator
UnmodifiableOrderedMap. mapIterator()
-