Uses of Interface
org.egothor.cache.List

Packages that use List
org.egothor.cache.fifo Provides classes that help implementing a cache using FIFO algorithm as an eviction policy. 
org.egothor.cache.lru Provides classes that help implementing a cache using LRU algorithm as an eviction policy. 
 

Uses of List in org.egothor.cache.fifo
 

Classes in org.egothor.cache.fifo that implement List
 class FifoList<T>
          Represents a FIFO (First-In First-Out) list.
 

Uses of List in org.egothor.cache.lru
 

Classes in org.egothor.cache.lru that implement List
 class LruList<T>
          Represents a LRU (Least Recently Used) list.