Uses of Class
org.egothor.cache.AbstractNode

Packages that use AbstractNode
org.egothor.cache.lfu Provides classes that help implementing a cache using LFU algorithm as an eviction policy. 
org.egothor.cache.lruk Provides classes that help implementing a cache using LRU-K algorithm as an eviction policy. 
 

Uses of AbstractNode in org.egothor.cache.lfu
 

Subclasses of AbstractNode in org.egothor.cache.lfu
 class LfuNode<K>
          Represents a node that can be used as a key for TreeMap.
 

Uses of AbstractNode in org.egothor.cache.lruk
 

Subclasses of AbstractNode in org.egothor.cache.lruk
 class LruKNode<K>
          Represents a node that can be used as a key for TreeMap.