Class FixedSizeSortedMap
- java.lang.Object
-
- org.apache.commons.collections.map.AbstractMapDecorator
-
- org.apache.commons.collections.map.AbstractSortedMapDecorator
-
- org.apache.commons.collections.map.FixedSizeSortedMap
-
- All Implemented Interfaces:
Serializable,Map,SortedMap,BoundedMap
@Deprecated(since="2021-04-30") public class FixedSizeSortedMap extends AbstractSortedMapDecorator implements SortedMap, BoundedMap, Serializable
Deprecated.Commons Collections 3 is in maintenance mode. Commons Collections 4 should be used instead.Decorates anotherSortedMapto 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<K, V>). This class may throw exceptions when accessed by concurrent threads without synchronization.This class is Serializable from Commons Collections 3.1.
- Since:
- Commons Collections 3.0
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclear()Deprecated.static SortedMapdecorate(SortedMap map)Deprecated.Factory method to create a fixed size sorted map.SetentrySet()Deprecated.SortedMapheadMap(Object toKey)Deprecated.booleanisFull()Deprecated.Returns true if this map is full and no new elements can be added.SetkeySet()Deprecated.intmaxSize()Deprecated.Gets the maximum size of the map (the bound).Objectput(Object key, Object value)Deprecated.voidputAll(Map mapToCopy)Deprecated.Objectremove(Object key)Deprecated.SortedMapsubMap(Object fromKey, Object toKey)Deprecated.SortedMaptailMap(Object fromKey)Deprecated.Collectionvalues()Deprecated.-
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, hashCode, isEmpty, size, toString
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, putIfAbsent, remove, replace, replace, replaceAll, size
-
Methods inherited from interface java.util.SortedMap
comparator, firstKey, lastKey
-
-
-
-
Method Detail
-
decorate
public static SortedMap decorate(SortedMap map)
Deprecated.Factory method to create a fixed size sorted map.- Parameters:
map- the map to decorate, must not be null- Throws:
IllegalArgumentException- if map is null
-
put
public Object put(Object key, Object value)
Deprecated.- Specified by:
putin interfaceMap- Overrides:
putin classAbstractMapDecorator
-
putAll
public void putAll(Map mapToCopy)
Deprecated.- Specified by:
putAllin interfaceMap- Overrides:
putAllin classAbstractMapDecorator
-
clear
public void clear()
Deprecated.- Specified by:
clearin interfaceMap- Overrides:
clearin classAbstractMapDecorator
-
remove
public Object remove(Object key)
Deprecated.- Specified by:
removein interfaceMap- Overrides:
removein classAbstractMapDecorator
-
entrySet
public Set entrySet()
Deprecated.
-
keySet
public Set keySet()
Deprecated.
-
values
public Collection values()
Deprecated.
-
subMap
public SortedMap subMap(Object fromKey, Object toKey)
Deprecated.- Specified by:
subMapin interfaceSortedMap- Overrides:
subMapin classAbstractSortedMapDecorator
-
headMap
public SortedMap headMap(Object toKey)
Deprecated.- Specified by:
headMapin interfaceSortedMap- Overrides:
headMapin classAbstractSortedMapDecorator
-
tailMap
public SortedMap tailMap(Object fromKey)
Deprecated.- Specified by:
tailMapin interfaceSortedMap- Overrides:
tailMapin classAbstractSortedMapDecorator
-
isFull
public boolean isFull()
Deprecated.Description copied from interface:BoundedMapReturns true if this map is full and no new elements can be added.- Specified by:
isFullin interfaceBoundedMap- Returns:
trueif the map is full
-
maxSize
public int maxSize()
Deprecated.Description copied from interface:BoundedMapGets the maximum size of the map (the bound).- Specified by:
maxSizein interfaceBoundedMap- Returns:
- the maximum number of elements the map can hold
-
-