Method Summary |
|
public synchronized boolean | containsKey(Object key) Indicates if the given key is associated to a contained object. |
public synchronized void | free() |
public synchronized Object | get(Object key) Get the object associated to the given unique key. |
public synchronized void | hold(Object key, Object value) Holds the given object in a volatile state. |
public synchronized Enumeration | keys() Returns the list of used keys as an Enumeration of Objects. |
public synchronized void | remove(Object key) Remove the object associated to the given key. |
public synchronized int | size() Returns count of the objects in the store, or -1 if could not be
obtained. |
public synchronized void | store(Object key, Object value) Store the given object in a persistent state. |