Overview
Package
Class
Use
Tree
Deprecated
Index
Help
ehcache
PREV NEXT
FRAMES
NO FRAMES
All Classes
A
C
D
E
G
H
I
K
L
N
O
P
R
S
T
V
A
addListener(CacheListener)
- Method in interface net.sf.jsr107cache.
Cache
Add a listener to the list of cache listeners
C
Cache
- Interface in
net.sf.jsr107cache
A cache, being a mechanism for efficient temporary storage of objects for the purpose of improving the overall performance of an application system, should not be necessary for the application to function correctly, it only improves the performance.
CacheEntry
- Interface in
net.sf.jsr107cache
CacheEntry
CacheException
- Exception in
net.sf.jsr107cache
CacheException is a generic exception, which indicates a cache error has occurred.
CacheException()
- Constructor for exception net.sf.jsr107cache.
CacheException
Constructs a new CacheException.
CacheException(String)
- Constructor for exception net.sf.jsr107cache.
CacheException
Constructs a new CacheException with a message string.
CacheException(String, Throwable)
- Constructor for exception net.sf.jsr107cache.
CacheException
Constructs a CacheException with a message string, and a base exception
CacheFactory
- Interface in
net.sf.jsr107cache
CacheFactory is a service provider specific interface.
CacheListener
- Interface in
net.sf.jsr107cache
Interface describing various events that can happen as elements are added to or removed from a cache
CacheLoader
- Interface in
net.sf.jsr107cache
User should implement this CacheLoader interface to provide a loader object to load the objects into cache.
CacheManager
- Class in
net.sf.jsr107cache
CacheManager is used in J2SE environments for looking up named caches.
CacheManager()
- Constructor for class net.sf.jsr107cache.
CacheManager
CacheStatistics
- Interface in
net.sf.jsr107cache
clear()
- Method in interface net.sf.jsr107cache.
Cache
The clear method will remove all objects from the cache including the key, the associated value and the associated CacheStatistics object.
clear()
- Method in interface net.sf.jsr107cache.
EvictionStrategy
clearStatistics()
- Method in interface net.sf.jsr107cache.
CacheStatistics
containsKey(Object)
- Method in interface net.sf.jsr107cache.
Cache
Returns true if the cache contains the specified key.
containsValue(Object)
- Method in interface net.sf.jsr107cache.
Cache
createCache(Map)
- Method in interface net.sf.jsr107cache.
CacheFactory
creates a new implementation specific Cache object using the env parameters.
createEntry(Object, Object, long)
- Method in interface net.sf.jsr107cache.
EvictionStrategy
D
discardEntry(CacheEntry)
- Method in interface net.sf.jsr107cache.
EvictionStrategy
E
entrySet()
- Method in interface net.sf.jsr107cache.
Cache
Returns a set view of the objects currently contained in the cache.
equals(Object)
- Method in interface net.sf.jsr107cache.
Cache
Equality is based on the Set returned by entrySet.
evict()
- Method in interface net.sf.jsr107cache.
Cache
The evict method will remove objects from the cache that are no longer valid.
evict(Cache)
- Method in interface net.sf.jsr107cache.
EvictionStrategy
EvictionStrategy
- Interface in
net.sf.jsr107cache
G
get(Object)
- Method in interface net.sf.jsr107cache.
Cache
The get method will return, from the cache, the object associated with the argument "key".
getAll(Collection)
- Method in interface net.sf.jsr107cache.
Cache
The getAll method will return, from the cache, a Map of the objects associated with the Collection of keys in argument "keys".
getCache(String)
- Method in class net.sf.jsr107cache.
CacheManager
getCacheEntry(Object)
- Method in interface net.sf.jsr107cache.
Cache
Returns the CacheEntry object associated with the object identified by "key".
getCacheFactory()
- Method in class net.sf.jsr107cache.
CacheManager
getCacheHits()
- Method in interface net.sf.jsr107cache.
CacheStatistics
getCacheMisses()
- Method in interface net.sf.jsr107cache.
CacheStatistics
getCacheStatistics()
- Method in interface net.sf.jsr107cache.
Cache
Returns the CacheStatistics object associated with the cache.
getCost()
- Method in interface net.sf.jsr107cache.
CacheEntry
getCreationTime()
- Method in interface net.sf.jsr107cache.
CacheEntry
getExpirationTime()
- Method in interface net.sf.jsr107cache.
CacheEntry
getHits()
- Method in interface net.sf.jsr107cache.
CacheEntry
getInstance()
- Static method in class net.sf.jsr107cache.
CacheManager
Returns the singleton CacheManager
getLastAccessTime()
- Method in interface net.sf.jsr107cache.
CacheEntry
getLastUpdateTime()
- Method in interface net.sf.jsr107cache.
CacheEntry
getObjectCount()
- Method in interface net.sf.jsr107cache.
CacheStatistics
getStatisticsAccuracy()
- Method in interface net.sf.jsr107cache.
CacheStatistics
getVersion()
- Method in interface net.sf.jsr107cache.
CacheEntry
Returns a version counter.
H
hashCode()
- Method in interface net.sf.jsr107cache.
Cache
I
instance
- Static variable in class net.sf.jsr107cache.
CacheManager
isEmpty()
- Method in interface net.sf.jsr107cache.
Cache
isValid()
- Method in interface net.sf.jsr107cache.
CacheEntry
K
keySet()
- Method in interface net.sf.jsr107cache.
Cache
Returns a set view of the keys currently contained in the cache.
L
load(Object)
- Method in interface net.sf.jsr107cache.
Cache
The load method provides a means to "pre load" the cache.
load(Object)
- Method in interface net.sf.jsr107cache.
CacheLoader
loads an object.
loadAll(Collection)
- Method in interface net.sf.jsr107cache.
Cache
The loadAll method provides a means to "pre load" objects into the cache.
loadAll(Collection)
- Method in interface net.sf.jsr107cache.
CacheLoader
loads multiple object.
N
net.sf.jsr107cache
- package net.sf.jsr107cache
O
onClear()
- Method in interface net.sf.jsr107cache.
CacheListener
onEvict(Object)
- Method in interface net.sf.jsr107cache.
CacheListener
Triggered when a cache mapping is removed due to eviction
onLoad(Object)
- Method in interface net.sf.jsr107cache.
CacheListener
Triggered when a cache mapping is created due to the cache loader being consulted
onPut(Object)
- Method in interface net.sf.jsr107cache.
CacheListener
Triggered when a cache mapping is created due to calling Cache.put()
onRemove(Object)
- Method in interface net.sf.jsr107cache.
CacheListener
Triggered when a cache mapping is removed due to calling Cache.remove()
P
peek(Object)
- Method in interface net.sf.jsr107cache.
Cache
The peek method will return the object associated with "key" if it currently exists (and is valid) in the cache.
put(Object, Object)
- Method in interface net.sf.jsr107cache.
Cache
The put method adds the object "value" to the cache identified by the object "key".
putAll(Map)
- Method in interface net.sf.jsr107cache.
Cache
Copies all of the mappings from the specified map to the cache.
R
registerCache(String, Cache)
- Method in class net.sf.jsr107cache.
CacheManager
remove(Object)
- Method in interface net.sf.jsr107cache.
Cache
The remove method will delete the object from the cache including the key, the associated value and the associated CacheStatistics object.
removeListener(CacheListener)
- Method in interface net.sf.jsr107cache.
Cache
Remove a listener from the list of cache listeners
S
size()
- Method in interface net.sf.jsr107cache.
Cache
STATISTICS_ACCURACY_BEST_EFFORT
- Static variable in interface net.sf.jsr107cache.
CacheStatistics
STATISTICS_ACCURACY_GUARANTEED
- Static variable in interface net.sf.jsr107cache.
CacheStatistics
STATISTICS_ACCURACY_NONE
- Static variable in interface net.sf.jsr107cache.
CacheStatistics
T
touchEntry(CacheEntry)
- Method in interface net.sf.jsr107cache.
EvictionStrategy
V
values()
- Method in interface net.sf.jsr107cache.
Cache
A
C
D
E
G
H
I
K
L
N
O
P
R
S
T
V
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
ehcache
PREV NEXT
FRAMES
NO FRAMES
All Classes
true