public interface Cache
Modifier and Type | Method and Description |
---|---|
void |
addElement(java.lang.Object key,
java.lang.Object value) |
int |
capacity()
Returns the maximum number of elements that can be cached at one time.
|
java.lang.Object |
getElement(java.lang.Object key) |
int |
size()
Returns the number of elements in the cache, not to be confused with
the
capacity() which returns the number
of elements that can be held in the cache at one time. |
void addElement(java.lang.Object key, java.lang.Object value)
java.lang.Object getElement(java.lang.Object key)
int size()
capacity()
which returns the number
of elements that can be held in the cache at one time.
int capacity()
Copyright ? 2000-2003 Apache Software Foundation. All Rights Reserved.