| Modifier | Constructor and Description |
|---|---|
protected |
LRUCache.LRUCacheEntry(K key,
V value)
Creates a new double linked cell, storing the object we
want to cache and the key that is used to retrieve it.
|
public K getKey()
public V getValue()
public void setNext(LRUCache.LRUCacheEntry<K,V> v)
v - The valuepublic void setPrev(LRUCache.LRUCacheEntry<K,V> v)
v - The valuepublic void updateTimestamp()
public void reset()
Copyright © 2013 IronJacamar (http://www.ironjacamar.org)