Class AbstractSortedMapDecorator
- java.lang.Object
-
- org.apache.commons.collections.map.AbstractMapDecorator
-
- org.apache.commons.collections.map.AbstractSortedMapDecorator
-
- Direct Known Subclasses:
DualTreeBidiMap.ViewMap,FixedSizeSortedMap,UnmodifiableSortedMap
public abstract class AbstractSortedMapDecorator extends AbstractMapDecorator implements SortedMap
Provides a base decorator that enables additional functionality to be added to a Map via decoration.Methods are forwarded directly to the decorated map.
This implementation does not perform any special processing with the map views. Instead it simply returns the set/collection from the wrapped map. This may be undesirable, for example if you are trying to write a validating implementation it would provide a loophole around the validation. But, you might want that loophole, so this class is kept simple.
- Since:
- Commons Collections 3.0
- Version:
- $Revision: 646777 $ $Date: 2008-04-10 14:33:15 +0200 (Thu, 10 Apr 2008) $
- Author:
- Stephen Colebourne
-
-
Field Summary
-
Fields inherited from class org.apache.commons.collections.map.AbstractMapDecorator
map
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractSortedMapDecorator()Constructor only used in deserialization, do not use otherwise.AbstractSortedMapDecorator(SortedMap map)Constructor that wraps (not copies).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Comparatorcomparator()ObjectfirstKey()protected SortedMapgetSortedMap()Gets the map being decorated.SortedMapheadMap(Object toKey)ObjectlastKey()SortedMapsubMap(Object fromKey, Object toKey)SortedMaptailMap(Object fromKey)-
Methods inherited from class org.apache.commons.collections.map.AbstractMapDecorator
clear, containsKey, containsValue, entrySet, equals, get, getMap, hashCode, isEmpty, keySet, put, putAll, remove, size, toString, values
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size
-
-
-
-
Constructor Detail
-
AbstractSortedMapDecorator
protected AbstractSortedMapDecorator()
Constructor only used in deserialization, do not use otherwise.- Since:
- Commons Collections 3.1
-
AbstractSortedMapDecorator
public AbstractSortedMapDecorator(SortedMap map)
Constructor that wraps (not copies).- Parameters:
map- the map to decorate, must not be null- Throws:
IllegalArgumentException- if the collection is null
-
-
Method Detail
-
getSortedMap
protected SortedMap getSortedMap()
Gets the map being decorated.- Returns:
- the decorated map
-
comparator
public Comparator comparator()
- Specified by:
comparatorin interfaceSortedMap
-
-