net.spy.cache
Class LRUCache<K,V>

java.lang.Object
  extended by java.util.AbstractMap<K,V>
      extended by java.util.HashMap<K,V>
          extended by java.util.LinkedHashMap<K,V>
              extended by net.spy.cache.LRUCache<K,V>
All Implemented Interfaces:
Serializable, Cloneable, Map<K,V>

public class LRUCache<K,V>
extends LinkedHashMap<K,V>

A fixed-size least-recently-used cache.

See Also:
Serialized Form

Constructor Summary
LRUCache(int size)
          Get an instance of LRUCache.
 
Method Summary
 V get(Object o)
          Get the object from the cache, and defereference it if it's a reference.
 V put(K key, V val)
           
protected  boolean removeEldestEntry(Map.Entry<K,V> e)
           
 
Methods inherited from class java.util.LinkedHashMap
clear, containsValue
 
Methods inherited from class java.util.HashMap
clone, containsKey, entrySet, isEmpty, keySet, putAll, remove, size, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
containsKey, entrySet, equals, hashCode, isEmpty, keySet, putAll, remove, size, values
 

Constructor Detail

LRUCache

public LRUCache(int size)
Get an instance of LRUCache.

Method Detail

get

public V get(Object o)
Get the object from the cache, and defereference it if it's a reference.

Specified by:
get in interface Map<K,V>
Overrides:
get in class LinkedHashMap<K,V>

put

public V put(K key,
             V val)
Specified by:
put in interface Map<K,V>
Overrides:
put in class HashMap<K,V>

removeEldestEntry

protected boolean removeEldestEntry(Map.Entry<K,V> e)
Overrides:
removeEldestEntry in class LinkedHashMap<K,V>


Copyright © 1995-2007 SPY Internetworking. All Rights Reserved.