|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.rice.cs.cunit.util.SoftHashMap<K,V>
public class SoftHashMap<K,V>
A hash map with soft references.
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface java.util.Map |
---|
java.util.Map.Entry<K,V> |
Field Summary | |
---|---|
private java.util.HashMap<K,java.lang.ref.SoftReference<V>> |
_map
The wrapped map. |
(package private) static int |
DEFAULT_INITIAL_CAPACITY
The default initial capacity - MUST be a power of two. |
(package private) static float |
DEFAULT_LOAD_FACTOR
The load factor used when none specified in constructor. |
(package private) static int |
MAXIMUM_CAPACITY
The maximum capacity, used if a higher value is implicitly specified by either of the constructors with arguments. |
Constructor Summary | |
---|---|
SoftHashMap()
Constructs an empty SoftHashMap with the default initial capacity (16) and the default load factor (0.75). |
|
SoftHashMap(int initialCapacity)
Constructs an empty SoftHashMap with the specified initial capacity and the default load factor (0.75). |
|
SoftHashMap(int initialCapacity,
float loadFactor)
Constructs an empty SoftHashMap with the specified initial capacity and load factor. |
|
SoftHashMap(java.util.Map<? extends K,? extends V> m)
Constructs a new SoftHashMap with the same mappings as the specified Map. |
Method Summary | |
---|---|
void |
clear()
Removes all mappings from this map (optional operation). |
void |
compact()
Remove keys whose values have been removed. |
boolean |
containsKey(java.lang.Object key)
Returns true if this map contains a mapping for the specified key. |
boolean |
containsValue(java.lang.Object value)
Returns true if this map maps one or more keys to the specified value. |
java.util.Set<java.util.Map.Entry<K,V>> |
entrySet()
Not supported. |
V |
get(java.lang.Object key)
Returns the value to which this map maps the specified key. |
boolean |
isEmpty()
Returns true if this map contains no key-value mappings. |
java.util.Set<K> |
keySet()
Returns a set view of the keys contained in this map. |
V |
put(K k,
V v)
Associates the specified value with the specified key in this map (optional operation). |
void |
putAll(java.util.Map<? extends K,? extends V> map)
Copies all of the mappings from the specified map to this map (optional operation). |
V |
remove(java.lang.Object key)
Removes the mapping for this key from this map if it is present (optional operation). |
int |
size()
Returns the number of key-value mappings in this map. |
java.util.Collection<V> |
values()
Not supported. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface java.util.Map |
---|
equals, hashCode |
Field Detail |
---|
private java.util.HashMap<K,java.lang.ref.SoftReference<V>> _map
static final int DEFAULT_INITIAL_CAPACITY
static final int MAXIMUM_CAPACITY
static final float DEFAULT_LOAD_FACTOR
Constructor Detail |
---|
public SoftHashMap(int initialCapacity, float loadFactor)
initialCapacity
- The initial capacity.loadFactor
- The load factor.
java.lang.IllegalArgumentException
- if the initial capacity is negative
or the load factor is nonpositive.public SoftHashMap(int initialCapacity)
initialCapacity
- the initial capacity.
java.lang.IllegalArgumentException
- if the initial capacity is negative.public SoftHashMap()
public SoftHashMap(java.util.Map<? extends K,? extends V> m)
m
- the map whose mappings are to be placed in this map.
java.lang.NullPointerException
- if the specified map is null.Method Detail |
---|
public V get(java.lang.Object key)
get
in interface java.util.Map<K,V>
key
- key whose associated value is to be returned.
java.lang.NullPointerException
- if the key is null and this map does not permit null keys.containsKey(Object)
public void compact()
public int size()
This implementation returns entrySet().size().
size
in interface java.util.Map<K,V>
public boolean isEmpty()
isEmpty
in interface java.util.Map<K,V>
public boolean containsKey(java.lang.Object key)
containsKey
in interface java.util.Map<K,V>
key
- key whose presence in this map is to be tested.
java.lang.ClassCastException
- if the key is of an inappropriate type for this map (optional).
java.lang.NullPointerException
- if the key is null and this map does not permit null keys
(optional).public boolean containsValue(java.lang.Object value)
containsValue
in interface java.util.Map<K,V>
value
- value whose presence in this map is to be tested.
java.lang.ClassCastException
- if the value is of an inappropriate type for this map (optional).
java.lang.NullPointerException
- if the value is null and this map does not permit null values
(optional).public V put(K k, V v)
m.containsKey(k)
would return
true.))
put
in interface java.util.Map<K,V>
k
- key with which the specified value is to be associated.v
- value to be associated with the specified key.
java.lang.UnsupportedOperationException
- if the put operation is not supported by this map.
java.lang.ClassCastException
- if the class of the specified key or value prevents it from being stored in
this map.
java.lang.IllegalArgumentException
- if some aspect of this key or value prevents it from being stored in this
map.
java.lang.NullPointerException
- if this map does not permit null keys or values, and the specified
key or value is null.public V remove(java.lang.Object key)
(key==null ? k==null :
key.equals(k))
, that mapping is removed. (The map can contain at most one such mapping.)
Returns the value to which the map previously associated the key, or null if the map contained no mapping for this key. (A null return can also indicate that the map previously associated null with the specified key if the implementation supports null values.) The map will not contain a mapping for the specified key once the call returns.
remove
in interface java.util.Map<K,V>
key
- key whose mapping is to be removed from the map.
java.lang.ClassCastException
- if the key is of an inappropriate type for this map (optional).
java.lang.NullPointerException
- if the key is null and this map does not permit null keys
(optional).
java.lang.UnsupportedOperationException
- if the remove method is not supported by this map.public void putAll(java.util.Map<? extends K,? extends V> map)
put(k, v)
on this map once for each mapping from key
k to value v in the specified map. The behavior of this operation is unspecified if the specified
map is modified while the operation is in progress.
putAll
in interface java.util.Map<K,V>
map
- Mappings to be stored in this map.
java.lang.UnsupportedOperationException
- if the putAll method is not supported by this map.
java.lang.ClassCastException
- if the class of a key or value in the specified map prevents it from being
stored in this map.
java.lang.IllegalArgumentException
- some aspect of a key or value in the specified map prevents it from being
stored in this map.
java.lang.NullPointerException
- if the specified map is null, or if this map does not permit
null keys or values, and the specified map contains null
keys or values.public void clear()
clear
in interface java.util.Map<K,V>
java.lang.UnsupportedOperationException
- clear is not supported by this map.public java.util.Set<K> keySet()
keySet
in interface java.util.Map<K,V>
public java.util.Collection<V> values()
values
in interface java.util.Map<K,V>
java.lang.UnsupportedOperationException
public java.util.Set<java.util.Map.Entry<K,V>> entrySet()
entrySet
in interface java.util.Map<K,V>
java.lang.UnsupportedOperationException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |