| 
© 2004 BEA Systems, Inc. | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractMap
com.beasys.commerce.util.SoftHashMap
A map implemented using SoftReferences to store the values.
Unlike the java.util.WeakHashMap implementation, this does
 not utilize a ReferenceQueue, therefore, the References are cleared
 immediately, rather than only after a modification to the Map.
 Additionally, since this uses SoftReferences by default, the Map shouldn't
 be immediately cleared. Finally, this is also cloneable and
 serializable.
| Constructor Summary | |
SoftHashMap()
Constructs a new, empty SoftHashMap with the default
 capacity and the default load factor, which is 0.75. | 
|
SoftHashMap(int initialCapacity)
Constructs a new, empty SoftHashMap with the given
 initial capacity and the default load factor, which is
 0.75. | 
|
SoftHashMap(int initialCapacity,
            float loadFactor)
Constructs a new, empty SoftHashMap with the given
 initial capacity and the given load factor. | 
|
SoftHashMap(Map map)
Constructs a new SoftHashMap from the specified Map. | 
|
| Method Summary | |
 void | 
clear()
Removes all mappings from this map.  | 
 Object | 
clone()
Return a shallow clone of this map.  | 
 boolean | 
containsKey(Object key)
Returns true if this map contains a mapping for the
 specified key. | 
 boolean | 
containsValue(Object value)
Returns true if this map contains the specified value. | 
protected  Reference | 
createReference(Object data)
Create a Reference object containing the specified object.  | 
 Set | 
entrySet()
Returns a Set view of the mappings in this map. | 
 Object | 
get(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. | 
 Object | 
put(Object key,
    Object value)
Updates this map so that the given key maps to the given
 value.   | 
 Object | 
remove(Object key)
Removes the mapping for the given key from this map, if
 present. | 
 int | 
size()
Returns the number of key-value mappings in this map.  | 
| Methods inherited from class java.util.AbstractMap | 
equals, hashCode, keySet, putAll, toString, values | 
| Methods inherited from class java.lang.Object | 
finalize, getClass, notify, notifyAll, wait, wait, wait | 
| Methods inherited from interface java.util.Map | 
equals, hashCode, keySet, putAll, values | 
| Constructor Detail | 
public SoftHashMap()
SoftHashMap with the default
 capacity and the default load factor, which is 0.75.
public SoftHashMap(int initialCapacity)
SoftHashMap with the given
 initial capacity and the default load factor, which is
 0.75.
IllegalArgumentException - If the initial capacity is less than
                                   zero
public SoftHashMap(int initialCapacity,
                   float loadFactor)
SoftHashMap with the given
 initial capacity and the given load factor.
IllegalArgumentException - If the initial capacity is less than
                                   zero, or if the load factor is
                                   nonpositivepublic SoftHashMap(Map map)
SoftHashMap from the specified Map.
| Method Detail | 
public void clear()
clear in interface Mappublic Object clone()
public boolean containsKey(Object key)
true if this map contains a mapping for the
 specified key.
containsKey in interface Mapkey - The key whose presence in this map is to be testedpublic boolean containsValue(Object value)
true if this map contains the specified value.
containsValue in interface Mapprotected Reference createReference(Object data)
This implementation returns SoftReferences. Subclasses can override to return other Reference types.
data - the object (can be null).
public Set entrySet()
Set view of the mappings in this map.
entrySet in interface Mappublic Object get(Object key)
key.
 If this map does not contain a value for this key, then return
 null.
get in interface Mapkey - The key whose associated value, if any, is to be returnedpublic boolean isEmpty()
true if this map contains no key-value mappings.
isEmpty in interface Map
public Object put(Object key,
                  Object value)
key maps to the given
 value.  If the map previously contained a mapping for
 key then that mapping is replaced and the previous value is
 returned.
put in interface Mapkey - The key that is to be mapped to the given
                valuevalue - The value to which the given key is to be
                mapped
null if if there was no mapping for the keypublic Object remove(Object key)
key from this map, if
 present.
remove in interface Mapkey - The key whose mapping is to be removed
null if
          there was no mapping for the keypublic int size()
Map interface, the time required by this operation is
 linear in the size of the map.
size in interface Map
  | 
© 2004 BEA Systems, Inc. | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||