cz.cuni.jagrlib
Class LRUCache.LRUItem

java.lang.Object
  extended by cz.cuni.jagrlib.LRUCache.LRUItem
Enclosing class:
LRUCache<T>

protected static class LRUCache.LRUItem
extends java.lang.Object


Field Summary
 int key
          Key of this cache item.
 LRUCache.LRUItem older
          The older cache item.
 LRUCache.LRUItem younger
          The younger cache item.
 
Constructor Summary
protected LRUCache.LRUItem()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

key

public int key
Key of this cache item.


older

public LRUCache.LRUItem older
The older cache item.


younger

public LRUCache.LRUItem younger
The younger cache item.

Constructor Detail

LRUCache.LRUItem

protected LRUCache.LRUItem()