Uses of Class
org.apache.commons.collections4.map.AbstractIterableMap
Package
Description
-
Uses of AbstractIterableMap in org.apache.commons.collections4.bidimap
Modifier and TypeClassDescriptionclass
Provides a base decorator that enables additional functionality to be added to a BidiMap via decoration.class
Provides a base decorator that enables additional functionality to be added to an OrderedBidiMap via decoration.class
Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.protected static class
Internal sorted map view.final class
UnmodifiableBidiMap<K,
V> Decorates anotherBidiMap
to ensure it can't be altered.final class
Decorates anotherOrderedBidiMap
to ensure it can't be altered.final class
Decorates anotherSortedBidiMap
to ensure it can't be altered. -
Uses of AbstractIterableMap in org.apache.commons.collections4.map
Modifier and TypeClassDescriptionclass
AbstractMapDecorator<K,
V> Provides a base decorator that enables additional functionality to be added to a Map via decoration.class
Provides a base decorator that enables additional functionality to be added to an OrderedMap via decoration.class
Provides a base decorator that enables additional functionality to be added to a Map via decoration.class
CompositeMap<K,
V> Decorates a map of other maps to provide a single unified view.class
DefaultedMap<K,
V> Decorates anotherMap
returning a default value if the map does not contain the requested key.class
FixedSizeMap<K,
V> Decorates anotherMap
to fix the size, preventing add/remove.class
FixedSizeSortedMap<K,
V> Decorates anotherSortedMap
to fix the size blocking add/remove.class
LazyMap<K,
V> Decorates anotherMap
to create objects in the map on demand.class
LazySortedMap<K,
V> Decorates anotherSortedMap
to create objects in the map on demand.class
ListOrderedMap<K,
V> Decorates aMap
to ensure that the order of addition is retained using aList
to maintain order.class
MultiKeyMap<K,
V> AMap
implementation that uses multiple keys to map the value.class
MultiValueMap<K,
V> Deprecated.class
PassiveExpiringMap<K,
V> Decorates aMap
to evict expired entries once their expiration time has been reached.class
PredicatedMap<K,
V> Decorates anotherMap
to validate that additions match a specified predicate.class
PredicatedSortedMap<K,
V> Decorates anotherSortedMap
to validate that additions match a specified predicate.final class
StaticBucketMap<K,
V> A StaticBucketMap is an efficient, thread-safe implementation ofMap
that performs well in a highly thread-contentious environment.class
TransformedMap<K,
V> Decorates anotherMap
to transform objects that are added.class
TransformedSortedMap<K,
V> Decorates anotherSortedMap
to transform objects that are added.final class
UnmodifiableMap<K,
V> Decorates anotherMap
to ensure it can't be altered.final class
Decorates anotherOrderedMap
to ensure it can't be altered.final class
Decorates anotherSortedMap
to ensure it can't be altered.
MultiValuedMap
instead