| java.util.Hashtable net.matuschek.util.LruHashtable
LruHashtable | public class LruHashtable extends Hashtable (Code) | | A Hashtable that expires least-recently-used objects.
Use just like java.util.Hashtable, except that the initial-capacity
parameter is required. Instead of growing bigger than that size,
it will throw out objects that haven't been looked at in a while.
author: Jef Poskanzer author: Daniel Matuschek version: $Id: LruHashtable.java,v 1.3 2002/05/31 14:45:56 matuschd Exp $ See Also: java.util.Hashtable |
LruHashtable | public LruHashtable(int initialCapacity, float loadFactor)(Code) | | |
LruHashtable | public LruHashtable(int initialCapacity)(Code) | | |
clear | public synchronized void clear()(Code) | | |
contains | public synchronized boolean contains(Object value)(Code) | | |
containsKey | public synchronized boolean containsKey(Object key)(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
|
|