|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.apache.commons.collections.map.AbstractMapDecorator
org.apache.commons.collections.map.AbstractSortedMapDecorator
org.apache.commons.collections.map.FixedSizeSortedMap
Decorates another SortedMap to fix the size blocking add/remove.
Any action that would change the size of the map is disallowed. The put method is allowed to change the value associated with an existing key however.
If trying to remove or clear the map, an UnsupportedOperationException is thrown. If trying to put a new mapping into the map, an IllegalArgumentException is thrown. This is because the put method can succeed if the mapping's key already exists in the map, so the put method is not always unsupported.
Note that FixedSizeSortedMap is not synchronized and is not thread-safe.
If you wish to use this map from multiple threads concurrently, you must use
appropriate synchronization. The simplest approach is to wrap this map
using Collections.synchronizedSortedMap(java.util.SortedMap). This class may throw
exceptions when accessed by concurrent threads without synchronization.
This class is Serializable from Commons Collections 3.1.
| Nested Class Summary |
| Nested classes inherited from class java.util.Map |
Map.Entry |
| Field Summary |
| Fields inherited from class org.apache.commons.collections.map.AbstractMapDecorator |
map |
| Constructor Summary | |
protected |
FixedSizeSortedMap(SortedMap map)
Constructor that wraps (not copies). |
| Method Summary | |
void |
clear()
|
static SortedMap |
decorate(SortedMap map)
Factory method to create a fixed size sorted map. |
Set |
entrySet()
|
protected SortedMap |
getSortedMap()
Gets the map being decorated. |
SortedMap |
headMap(Object toKey)
|
boolean |
isFull()
Returns true if this map is full and no new elements can be added. |
Set |
keySet()
|
int |
maxSize()
Gets the maximum size of the map (the bound). |
Object |
put(Object key,
Object value)
|
void |
putAll(Map mapToCopy)
|
Object |
remove(Object key)
|
SortedMap |
subMap(Object fromKey,
Object toKey)
|
SortedMap |
tailMap(Object fromKey)
|
Collection |
values()
|
| Methods inherited from class org.apache.commons.collections.map.AbstractSortedMapDecorator |
comparator, firstKey, lastKey |
| Methods inherited from class org.apache.commons.collections.map.AbstractMapDecorator |
containsKey, containsValue, equals, get, getMap, hashCode, isEmpty, size, toString |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.SortedMap |
comparator, firstKey, lastKey |
| Methods inherited from interface java.util.Map |
containsKey, containsValue, equals, get, hashCode, isEmpty, size |
| Constructor Detail |
protected FixedSizeSortedMap(SortedMap map)
map - the map to decorate, must not be null
IllegalArgumentException - if map is null| Method Detail |
public static SortedMap decorate(SortedMap map)
map - the map to decorate, must not be null
IllegalArgumentException - if map is nullprotected SortedMap getSortedMap()
getSortedMap in class AbstractSortedMapDecorator
public Object put(Object key,
Object value)
put in interface Mapput in class AbstractMapDecoratorpublic void putAll(Map mapToCopy)
putAll in interface MapputAll in class AbstractMapDecoratorpublic void clear()
clear in interface Mapclear in class AbstractMapDecoratorpublic Object remove(Object key)
remove in interface Mapremove in class AbstractMapDecoratorpublic Set entrySet()
entrySet in interface MapentrySet in class AbstractMapDecoratorpublic Set keySet()
keySet in interface MapkeySet in class AbstractMapDecoratorpublic Collection values()
values in interface Mapvalues in class AbstractMapDecorator
public SortedMap subMap(Object fromKey,
Object toKey)
subMap in interface SortedMapsubMap in class AbstractSortedMapDecoratorpublic SortedMap headMap(Object toKey)
headMap in interface SortedMapheadMap in class AbstractSortedMapDecoratorpublic SortedMap tailMap(Object fromKey)
tailMap in interface SortedMaptailMap in class AbstractSortedMapDecoratorpublic boolean isFull()
BoundedMap
isFull in interface BoundedMaptrue if the map is fullpublic int maxSize()
BoundedMap
maxSize in interface BoundedMap
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||