| java.lang.Object org.pnuts.util.LRUCache org.pnuts.util.LRUCacheMap
Method Summary | |
public void | clear() Throws an exception, since this operation is not supported in this class. | abstract protected Object | construct(Object key) | public boolean | containsKey(Object key) Throws an exception, since this operation is not supported in this class. | public boolean | containsValue(Object value) Throws an exception, since this operation is not supported in this class. | public synchronized Object | get(Object key) | public boolean | isEmpty() Throws an exception, since this operation is not supported in this class. | public void | putAll(Map t) Throws an exception, since this operation is not supported in this class. | public Object | remove(Object key) Throws an exception, since this operation is not supported in this class. |
LRUCacheMap | public LRUCacheMap(int max)(Code) | | |
clear | public void clear()(Code) | | Throws an exception, since this operation is not supported in this class.
|
construct | abstract protected Object construct(Object key)(Code) | | Called when the cache entry has been expired
Parameters: key - the key the value for the key |
containsKey | public boolean containsKey(Object key)(Code) | | Throws an exception, since this operation is not supported in this class.
|
containsValue | public boolean containsValue(Object value)(Code) | | Throws an exception, since this operation is not supported in this class.
|
isEmpty | public boolean isEmpty()(Code) | | Throws an exception, since this operation is not supported in this class.
|
putAll | public void putAll(Map t)(Code) | | Throws an exception, since this operation is not supported in this class.
|
remove | public Object remove(Object key)(Code) | | Throws an exception, since this operation is not supported in this class.
|
|
|