Class FixedSizeMap
- java.lang.Object
-
- org.apache.commons.collections.map.AbstractMapDecorator
-
- org.apache.commons.collections.map.FixedSizeMap
-
- All Implemented Interfaces:
Serializable,Map,BoundedMap
public class FixedSizeMap extends AbstractMapDecorator implements Map, BoundedMap, Serializable
Decorates anotherMapto fix the size, preventing 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 FixedSizeMap 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.synchronizedMap(Map). 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
- Version:
- $Revision: 646777 $ $Date: 2008-04-10 14:33:15 +0200 (Thu, 10 Apr 2008) $
- Author:
- Stephen Colebourne, Paul Jack
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.commons.collections.map.AbstractMapDecorator
map
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedFixedSizeMap(Map map)Constructor that wraps (not copies).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()static Mapdecorate(Map map)Factory method to create a fixed size map.SetentrySet()booleanisFull()Returns true if this map is full and no new elements can be added.SetkeySet()intmaxSize()Gets the maximum size of the map (the bound).Objectput(Object key, Object value)voidputAll(Map mapToCopy)Objectremove(Object key)Collectionvalues()-
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.Map
compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, putIfAbsent, remove, replace, replace, replaceAll, size
-
-
-
-
Constructor Detail
-
FixedSizeMap
protected FixedSizeMap(Map map)
Constructor that wraps (not copies).- Parameters:
map- the map to decorate, must not be null- Throws:
IllegalArgumentException- if map is null
-
-
Method Detail
-
decorate
public static Map decorate(Map map)
Factory method to create a fixed size 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)
- Specified by:
putin interfaceMap- Overrides:
putin classAbstractMapDecorator
-
putAll
public void putAll(Map mapToCopy)
- Specified by:
putAllin interfaceMap- Overrides:
putAllin classAbstractMapDecorator
-
clear
public void clear()
- Specified by:
clearin interfaceMap- Overrides:
clearin classAbstractMapDecorator
-
remove
public Object remove(Object key)
- Specified by:
removein interfaceMap- Overrides:
removein classAbstractMapDecorator
-
entrySet
public Set entrySet()
- Specified by:
entrySetin interfaceMap- Overrides:
entrySetin classAbstractMapDecorator
-
keySet
public Set keySet()
- Specified by:
keySetin interfaceMap- Overrides:
keySetin classAbstractMapDecorator
-
values
public Collection values()
- Specified by:
valuesin interfaceMap- Overrides:
valuesin classAbstractMapDecorator
-
isFull
public boolean isFull()
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()
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
-
-