Uses of Class
org.apache.commons.collections.map.AbstractMapDecorator

Packages that use AbstractMapDecorator
org.apache.commons.collections.bidimap This package contains implementations of the BidiMap, OrderedBidiMap and SortedBidiMap interfaces. 
org.apache.commons.collections.map This package contains implementations of the Map, IterableMap, OrderedMap and SortedMap interfaces. 
 

Uses of AbstractMapDecorator in org.apache.commons.collections.bidimap
 

Subclasses of AbstractMapDecorator in org.apache.commons.collections.bidimap
 class AbstractBidiMapDecorator<K,V>
          Provides a base decorator that enables additional functionality to be added to a BidiMap via decoration.
 class AbstractOrderedBidiMapDecorator<K,V>
          Provides a base decorator that enables additional functionality to be added to an OrderedBidiMap via decoration.
 class AbstractSortedBidiMapDecorator<K,V>
          Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.
protected static class DualTreeBidiMap.ViewMap<K,V>
          Internal sorted map view.
 class UnmodifiableBidiMap<K,V>
          Decorates another BidiMap to ensure it can't be altered.
 class UnmodifiableOrderedBidiMap<K,V>
          Decorates another OrderedBidiMap to ensure it can't be altered.
 class UnmodifiableSortedBidiMap<K,V>
          Decorates another SortedBidiMap to ensure it can't be altered.
 

Uses of AbstractMapDecorator in org.apache.commons.collections.map
 

Subclasses of AbstractMapDecorator in org.apache.commons.collections.map
 class AbstractOrderedMapDecorator<K,V>
          Provides a base decorator that enables additional functionality to be added to an OrderedMap via decoration.
 class AbstractSortedMapDecorator<K,V>
          Provides a base decorator that enables additional functionality to be added to a Map via decoration.
 class FixedSizeMap<K,V>
          Decorates another Map to fix the size, preventing add/remove.
 class FixedSizeSortedMap<K,V>
          Decorates another SortedMap to fix the size blocking add/remove.
 class LazyMap<K,V>
          Decorates another Map to create objects in the map on demand.
 class LazySortedMap<K,V>
          Decorates another SortedMap to create objects in the map on demand.
 class ListOrderedMap<K,V>
          Decorates a Map to ensure that the order of addition is retained using a List to maintain order.
 class PredicatedMap<K,V>
          Decorates another Map to validate that additions match a specified predicate.
 class PredicatedSortedMap<K,V>
          Decorates another SortedMap to validate that additions match a specified predicate.
 class TransformedMap
          Decorates another Map to transform objects that are added.
 class TransformedSortedMap
          Decorates another SortedMap to transform objects that are added.
 class UnmodifiableMap<K,V>
          Decorates another Map to ensure it can't be altered.
 class UnmodifiableOrderedMap<K,V>
          Decorates another OrderedMap to ensure it can't be altered.
 class UnmodifiableSortedMap<K,V>
          Decorates another SortedMap to ensure it can't be altered.
 



Copyright © 2005-2005 Apache Software Foundation, Matt Hall, John Watkinson. All Rights Reserved.