org.apache.commons.collections.map
Class AbstractSortedMapDecorator
java.lang.Object
|
+--org.apache.commons.collections.map.AbstractMapDecorator
|
+--org.apache.commons.collections.map.AbstractSortedMapDecorator
- All Implemented Interfaces:
- java.util.Map, java.util.SortedMap
- Direct Known Subclasses:
- FixedSizeSortedMap, UnmodifiableSortedMap
- public abstract class AbstractSortedMapDecorator
- extends AbstractMapDecorator
- implements java.util.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: 1.3 $ $Date: 2004/01/14 21:43:10 $
- Author:
- Stephen Colebourne
|
Method Summary |
java.util.Comparator |
comparator()
|
java.lang.Object |
firstKey()
|
java.util.SortedMap |
headMap(java.lang.Object toKey)
|
java.lang.Object |
lastKey()
|
java.util.SortedMap |
subMap(java.lang.Object fromKey,
java.lang.Object toKey)
|
java.util.SortedMap |
tailMap(java.lang.Object fromKey)
|
| Methods inherited from class org.apache.commons.collections.map.AbstractMapDecorator |
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, toString, values |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.Map |
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values |
AbstractSortedMapDecorator
public AbstractSortedMapDecorator(java.util.SortedMap map)
- Constructor that wraps (not copies).
- Parameters:
map - the map to decorate, must not be null
- Throws:
java.lang.IllegalArgumentException - if the collection is null
comparator
public java.util.Comparator comparator()
- Specified by:
comparator in interface java.util.SortedMap
firstKey
public java.lang.Object firstKey()
- Specified by:
firstKey in interface java.util.SortedMap
headMap
public java.util.SortedMap headMap(java.lang.Object toKey)
- Specified by:
headMap in interface java.util.SortedMap
lastKey
public java.lang.Object lastKey()
- Specified by:
lastKey in interface java.util.SortedMap
subMap
public java.util.SortedMap subMap(java.lang.Object fromKey,
java.lang.Object toKey)
- Specified by:
subMap in interface java.util.SortedMap
tailMap
public java.util.SortedMap tailMap(java.lang.Object fromKey)
- Specified by:
tailMap in interface java.util.SortedMap
Copyright © 2001-2004 Apache Software Foundation. All Rights Reserved.