Class FixedSizeMap
- java.lang.Object
-
- org.apache.commons.collections.map.AbstractMapDecorator
-
- org.apache.commons.collections.map.FixedSizeMap
-
- All Implemented Interfaces:
java.io.Serializable,java.util.Map,BoundedMap
public class FixedSizeMap extends AbstractMapDecorator implements java.util.Map, BoundedMap, java.io.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
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()static java.util.Mapdecorate(java.util.Map map)Factory method to create a fixed size map.java.util.SetentrySet()booleanisFull()Returns true if this map is full and no new elements can be added.java.util.SetkeySet()intmaxSize()Gets the maximum size of the map (the bound).java.lang.Objectput(java.lang.Object key, java.lang.Object value)voidputAll(java.util.Map mapToCopy)java.lang.Objectremove(java.lang.Object key)java.util.Collectionvalues()-
Methods inherited from class org.apache.commons.collections.map.AbstractMapDecorator
containsKey, containsValue, equals, get, hashCode, isEmpty, size, toString
-
-
-
-
Method Detail
-
decorate
public static java.util.Map decorate(java.util.Map map)
Factory method to create a fixed size map.- Parameters:
map- the map to decorate, must not be null- Throws:
java.lang.IllegalArgumentException- if map is null
-
put
public java.lang.Object put(java.lang.Object key, java.lang.Object value)- Specified by:
putin interfacejava.util.Map- Overrides:
putin classAbstractMapDecorator
-
putAll
public void putAll(java.util.Map mapToCopy)
- Specified by:
putAllin interfacejava.util.Map- Overrides:
putAllin classAbstractMapDecorator
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Map- Overrides:
clearin classAbstractMapDecorator
-
remove
public java.lang.Object remove(java.lang.Object key)
- Specified by:
removein interfacejava.util.Map- Overrides:
removein classAbstractMapDecorator
-
entrySet
public java.util.Set entrySet()
- Specified by:
entrySetin interfacejava.util.Map- Overrides:
entrySetin classAbstractMapDecorator
-
keySet
public java.util.Set keySet()
- Specified by:
keySetin interfacejava.util.Map- Overrides:
keySetin classAbstractMapDecorator
-
values
public java.util.Collection values()
- Specified by:
valuesin interfacejava.util.Map- 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
-
-