ehcache

Uses of Class
net.sf.ehcache.Element

Packages that use Element
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.store Store package. 
 

Uses of Element in net.sf.ehcache
 

Methods in net.sf.ehcache that return Element
 Element Cache.get(java.io.Serializable key)
          Gets an element from the cache.
 Element Cache.getQuiet(java.io.Serializable key)
          Gets an element from the cache, without updating Element statistics.
 

Methods in net.sf.ehcache with parameters of type Element
 void Cache.put(Element element)
          Put an element in the cache.
 void Cache.putQuiet(Element element)
          Put an element in the cache, without updating statistics.
 boolean Cache.isExpired(Element element)
          Checks whether this cache element has expired.
 

Uses of Element in net.sf.ehcache.store
 

Methods in net.sf.ehcache.store that return Element
 Element DiskStore.get(java.io.Serializable key)
          Gets an Element from the Disk Store.
 Element DiskStore.getQuiet(java.io.Serializable key)
          Gets an Element from the Disk Store, without updating statistics
 Element Store.get(java.io.Serializable key)
          Gets an item from the cache.
 Element MemoryStore.get(java.io.Serializable key)
          Gets an item from the cache

The last access time in Element is updated.

 Element MemoryStore.getQuiet(java.io.Serializable key)
          Gets an item from the cache, without updating Element statistics

The last access time in Element is updated.

 

Methods in net.sf.ehcache.store with parameters of type Element
 void DiskStore.put(Element entry)
          Puts an item into the cache.
 void Store.put(Element element)
          Puts an item into the cache.
 void MemoryStore.put(Element element)
          Puts an item in the cache.
 


ehcache