Uses of Class
com.easyjf.cache.Element

Packages that use Element
com.easyjf.cache   
com.easyjf.cache.store   
 

Uses of Element in com.easyjf.cache
 

Methods in com.easyjf.cache with parameters of type Element
 boolean ICache.isExpired(Element e)
           
 boolean EasyCache.isExpired(Element e)
           
 

Uses of Element in com.easyjf.cache.store
 

Methods in com.easyjf.cache.store that return Element
 Element Store.get(java.lang.Object key)
           
 Element Store.remove(java.lang.Object key)
           
 Element MemoryStore.get(java.lang.Object key)
           
 Element MemoryStore.getQuiet(java.io.Serializable key)
           
 Element MemoryStore.remove(java.lang.Object key)
           
 Element LfuMemoryStore.remove(java.io.Serializable key)
          Removes an item from the cache.
 Element FifoMemoryStore.getFirstElement()
          Returns the first eligible element that can be taken out of the cache based on the FIFO policy
 

Methods in com.easyjf.cache.store with parameters of type Element
 void Store.put(Element element)
           
 void MemoryStore.put(Element element)
           
 void LfuMemoryStore.doPut(Element element)
          Puts an element into the cache
 int LfuMemoryStore.compareElements(Element element1, Element element2)
          Compares its two arguments for order.