A C E F G I K L M N O P R S T V

A

addAssociation(Object) - Method in interface org.tbee.cache.simple.Cache
 
addCacheListener(CacheListener) - Method in interface org.tbee.cache.simple.Cache
 
addCacheListener(CacheListener) - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
A cache listener listens to both finalize and remove events
addCacheListener(CacheListener) - Method in class org.tbee.cache.simple.LifespanCache
A cache listener listens to both finalize and remove events
addCacheListener(CacheListener) - Method in class org.tbee.cache.simple.TimeoutCache
A cache listener listens to both finalize and remove events
addFinalizeListener(FinalizeListener) - Method in class org.tbee.cache.simple.LossyHashMap
 
addRemoveListener(RemoveListener) - Method in class org.tbee.cache.simple.LossyHashMap
 

C

Cache<K,V> - Interface in org.tbee.cache.simple
This is the main interface for this package.
CacheFactory - Class in org.tbee.cache.simple
This class keeps an eye on all created caches.
CacheFactory() - Constructor for class org.tbee.cache.simple.CacheFactory
 
CacheListener - Interface in org.tbee.cache.simple
 
callFinalizeListener(FinalizeLogger) - Method in class org.tbee.cache.simple.LossyHashMap
 
callRemoveListener(Object, Object) - Method in class org.tbee.cache.simple.LossyHashMap
 
clean() - Method in class org.tbee.cache.simple.LossyHashMap
remove entries of which the reference was cleared (soft or weak references)
clear() - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
clear() - Method in class org.tbee.cache.simple.LifespanCache
 
clear() - Method in class org.tbee.cache.simple.LossyHashMap
removes all entries
clear() - Method in class org.tbee.cache.simple.TimeoutCache
 
clearAllCaches() - Static method in class org.tbee.cache.simple.CacheFactory
Clear all caches
clone() - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
clone() - Method in class org.tbee.cache.simple.LifespanCache
 
clone() - Method in class org.tbee.cache.simple.LossyHashMap
 
clone() - Method in class org.tbee.cache.simple.TimeoutCache
 
containsKey(Object) - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
containsKey(Object) - Method in class org.tbee.cache.simple.LifespanCache
 
containsKey(Object) - Method in class org.tbee.cache.simple.LossyHashMap
 
containsKey(Object) - Method in class org.tbee.cache.simple.TimeoutCache
 
containsValue(Object) - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
containsValue(Object) - Method in class org.tbee.cache.simple.LifespanCache
 
containsValue(Object) - Method in class org.tbee.cache.simple.LossyHashMap
 
containsValue(Object) - Method in class org.tbee.cache.simple.TimeoutCache
 

E

entryIsBeingFinalized(FinalizeEvent) - Method in interface org.tbee.cache.simple.CacheListener
 
entryIsBeingFinalized(FinalizeEvent) - Method in interface org.tbee.cache.simple.FinalizeListener
 
entryIsBeingRemoved(RemoveEvent) - Method in interface org.tbee.cache.simple.CacheListener
 
entryIsBeingRemoved(RemoveEvent) - Method in interface org.tbee.cache.simple.RemoveListener
 
entrySet() - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
entrySet() - Method in class org.tbee.cache.simple.LifespanCache
 
entrySet() - Method in class org.tbee.cache.simple.LossyHashMap
 
entrySet() - Method in class org.tbee.cache.simple.TimeoutCache
 

F

FinalizeEvent - Class in org.tbee.cache.simple
Insert the type's description here.
FinalizeEvent(Object, Object, Object) - Constructor for class org.tbee.cache.simple.FinalizeEvent
FinalizeEvent constructor comment.
FinalizeListener - Interface in org.tbee.cache.simple
 

G

get(Object) - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
get(Object) - Method in class org.tbee.cache.simple.LifespanCache
 
get(Object) - Method in class org.tbee.cache.simple.LossyHashMap
 
get(Object) - Method in class org.tbee.cache.simple.TimeoutCache
 
getKey() - Method in class org.tbee.cache.simple.FinalizeEvent
 
getKey() - Method in class org.tbee.cache.simple.RemoveEvent
 
getMode() - Method in class org.tbee.cache.simple.LossyHashMap
get the active mode
getName() - Method in interface org.tbee.cache.simple.Cache
 
getValue() - Method in class org.tbee.cache.simple.FinalizeEvent
 
getValue() - Method in class org.tbee.cache.simple.RemoveEvent
 

I

isEmpty() - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
isEmpty() - Method in class org.tbee.cache.simple.LifespanCache
 
isEmpty() - Method in class org.tbee.cache.simple.LossyHashMap
 
isEmpty() - Method in class org.tbee.cache.simple.TimeoutCache
 

K

keySet() - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
keySet() - Method in class org.tbee.cache.simple.LifespanCache
 
keySet() - Method in class org.tbee.cache.simple.LossyHashMap
 
keySet() - Method in class org.tbee.cache.simple.TimeoutCache
 

L

LeastRecentlyUsedCache<K,V> - Class in org.tbee.cache.simple
This cache has a maximum number of items it remembers.
LeastRecentlyUsedCache() - Constructor for class org.tbee.cache.simple.LeastRecentlyUsedCache
This constructor uses a cache size specified in as a system property, or a default value (10) if the property is not present.
LeastRecentlyUsedCache(char) - Constructor for class org.tbee.cache.simple.LeastRecentlyUsedCache
This constructor uses a cache size specified in as a system property, or a default value (10) if the property is not present.
LeastRecentlyUsedCache(char, int) - Constructor for class org.tbee.cache.simple.LeastRecentlyUsedCache
 
LeastRecentlyUsedCache(int) - Constructor for class org.tbee.cache.simple.LeastRecentlyUsedCache
 
LifespanCache - Class in org.tbee.cache.simple
This cache holds items only for a specified number of seconds accessing the item does NOT restart the counter (see TimeoutCache)
LifespanCache() - Constructor for class org.tbee.cache.simple.LifespanCache
This constructor uses a life span specified in as a system property, or a default value (60 seconds) if the property is not present.
LifespanCache(char) - Constructor for class org.tbee.cache.simple.LifespanCache
This constructor uses a life span specified in as a system property, or a default value (60 seconds) if the property is not present.
LifespanCache(char, int) - Constructor for class org.tbee.cache.simple.LifespanCache
The life span in milleseconds
LifespanCache(int) - Constructor for class org.tbee.cache.simple.LifespanCache
The life span in milleseconds
LossyHashMap<K,V> - Class in org.tbee.cache.simple
This class is a HashMap (for fast access) but uses weak references for its values, so the garbage collecter may remove referenced values.
LossyHashMap() - Constructor for class org.tbee.cache.simple.LossyHashMap
extended HashMap constructor: adds the mode
LossyHashMap(char) - Constructor for class org.tbee.cache.simple.LossyHashMap
extended HashMap constructor: adds the mode
LossyHashMap(char, int) - Constructor for class org.tbee.cache.simple.LossyHashMap
extended HashMap constructor: adds the mode
LossyHashMap(char, int, float) - Constructor for class org.tbee.cache.simple.LossyHashMap
extended HashMap constructor: adds the mode
LossyHashMap(char, Map) - Constructor for class org.tbee.cache.simple.LossyHashMap
extended HashMap constructor: adds the mode
LossyHashMap(int) - Constructor for class org.tbee.cache.simple.LossyHashMap
this constructor comes from the HashMap and assume STRONG mode
LossyHashMap(int, float) - Constructor for class org.tbee.cache.simple.LossyHashMap
this constructor comes from the HashMap and assume STRONG mode
LossyHashMap(Map) - Constructor for class org.tbee.cache.simple.LossyHashMap
this constructor comes from the HashMap and assume STRONG mode

M

MODE_SOFT - Static variable in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
MODE_SOFT - Static variable in class org.tbee.cache.simple.LifespanCache
 
MODE_SOFT - Static variable in class org.tbee.cache.simple.LossyHashMap
 
MODE_SOFT - Static variable in class org.tbee.cache.simple.TimeoutCache
 
MODE_STRONG - Static variable in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
MODE_STRONG - Static variable in class org.tbee.cache.simple.LifespanCache
 
MODE_STRONG - Static variable in class org.tbee.cache.simple.LossyHashMap
 
MODE_STRONG - Static variable in class org.tbee.cache.simple.TimeoutCache
 
MODE_WEAK - Static variable in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
MODE_WEAK - Static variable in class org.tbee.cache.simple.LifespanCache
 
MODE_WEAK - Static variable in class org.tbee.cache.simple.LossyHashMap
 
MODE_WEAK - Static variable in class org.tbee.cache.simple.TimeoutCache
 

N

newHashMapCache() - Static method in class org.tbee.cache.simple.CacheFactory
 
newHashMapCacheSoft() - Static method in class org.tbee.cache.simple.CacheFactory
 
newHashMapCacheWeak() - Static method in class org.tbee.cache.simple.CacheFactory
 
newLeastRecentlyUsedCache(int) - Static method in class org.tbee.cache.simple.CacheFactory
 
newLeastRecentlyUsedCacheSoft(int) - Static method in class org.tbee.cache.simple.CacheFactory
 
newLeastRecentlyUsedCacheWeak(int) - Static method in class org.tbee.cache.simple.CacheFactory
 
newLifespanCache(int) - Static method in class org.tbee.cache.simple.CacheFactory
 
newLifespanCacheSoft(int) - Static method in class org.tbee.cache.simple.CacheFactory
 
newLifespanCacheWeak(int) - Static method in class org.tbee.cache.simple.CacheFactory
 
newTimeoutCache(int) - Static method in class org.tbee.cache.simple.CacheFactory
 
newTimeoutCacheSoft(int) - Static method in class org.tbee.cache.simple.CacheFactory
 
newTimeoutCacheWeak(int) - Static method in class org.tbee.cache.simple.CacheFactory
 

O

org.tbee.cache.simple - package org.tbee.cache.simple
 

P

put(K, V) - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
put(Object, Object) - Method in class org.tbee.cache.simple.LifespanCache
 
put(Object, Object) - Method in class org.tbee.cache.simple.LossyHashMap
 
put(Object, Object) - Method in class org.tbee.cache.simple.TimeoutCache
 
putAll(Map<? extends K, ? extends V>) - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
putAll(Map) - Method in class org.tbee.cache.simple.LifespanCache
 
putAll(Map) - Method in class org.tbee.cache.simple.LossyHashMap
 
putAll(Map) - Method in class org.tbee.cache.simple.TimeoutCache
 

R

remove(Object) - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
remove(Object) - Method in class org.tbee.cache.simple.LifespanCache
 
remove(Object) - Method in class org.tbee.cache.simple.LossyHashMap
 
remove(Object) - Method in class org.tbee.cache.simple.TimeoutCache
 
removeCacheListener(CacheListener) - Method in interface org.tbee.cache.simple.Cache
 
removeCacheListener(CacheListener) - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
removeCacheListener(CacheListener) - Method in class org.tbee.cache.simple.LifespanCache
 
removeCacheListener(CacheListener) - Method in class org.tbee.cache.simple.TimeoutCache
 
RemoveEvent - Class in org.tbee.cache.simple
 
RemoveEvent(Object, Object, Object) - Constructor for class org.tbee.cache.simple.RemoveEvent
FinalizeEvent constructor comment.
removeFinalizeListener(FinalizeListener) - Method in class org.tbee.cache.simple.LossyHashMap
 
removeFromAllCaches(Object) - Static method in class org.tbee.cache.simple.CacheFactory
Remove a certain key from all caches
RemoveListener - Interface in org.tbee.cache.simple
 
removeRemoveListener(RemoveListener) - Method in class org.tbee.cache.simple.LossyHashMap
 
removeValue(Object) - Method in interface org.tbee.cache.simple.Cache
 
removeValue(Object) - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
removeValue(Object) - Method in class org.tbee.cache.simple.LifespanCache
 
removeValue(Object) - Method in class org.tbee.cache.simple.LossyHashMap
 
removeValue(Object) - Method in class org.tbee.cache.simple.TimeoutCache
 
removeValueFromAllCaches(Object) - Static method in class org.tbee.cache.simple.CacheFactory
Remove a certain value from all caches

S

setName(String) - Method in interface org.tbee.cache.simple.Cache
 
size() - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
size() - Method in class org.tbee.cache.simple.LifespanCache
 
size() - Method in class org.tbee.cache.simple.LossyHashMap
 
size() - Method in class org.tbee.cache.simple.TimeoutCache
 
SOURCECODE_VERSION - Static variable in class org.tbee.cache.simple.CacheFactory
Standard variable for determining version of a class file.
SOURCECODE_VERSION - Static variable in class org.tbee.cache.simple.FinalizeEvent
Standard variable for determining version of a class file.
SOURCECODE_VERSION - Static variable in class org.tbee.cache.simple.LeastRecentlyUsedCache
Standard variable for determining version of a class file.
SOURCECODE_VERSION - Static variable in class org.tbee.cache.simple.LifespanCache
Standard variable for determining version of a class file.
SOURCECODE_VERSION - Static variable in class org.tbee.cache.simple.LossyHashMap
Standard variable for determining version of a class file.
SOURCECODE_VERSION - Static variable in class org.tbee.cache.simple.RemoveEvent
Standard variable for determining version of a class file.
SOURCECODE_VERSION - Static variable in class org.tbee.cache.simple.TimeoutCache
Standard variable for determining version of a class file.

T

TimeoutCache - Class in org.tbee.cache.simple
This cache holds items only for a specified number of seconds, but each time the item is accessed, the counter is restarted.
TimeoutCache() - Constructor for class org.tbee.cache.simple.TimeoutCache
This constructor uses a life span specified in as a system property, or a default value (60 seconds) if the property is not present.
TimeoutCache(char) - Constructor for class org.tbee.cache.simple.TimeoutCache
This constructor uses a life span specified in as a system property, or a default value (60 seconds) if the property is not present.
TimeoutCache(char, int) - Constructor for class org.tbee.cache.simple.TimeoutCache
The life span in milleseconds
TimeoutCache(int) - Constructor for class org.tbee.cache.simple.TimeoutCache
The life span in milleseconds
toString() - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
toString() - Method in class org.tbee.cache.simple.LifespanCache
 
toString() - Method in class org.tbee.cache.simple.LossyHashMap
 
toString() - Method in class org.tbee.cache.simple.TimeoutCache
 

V

values() - Method in class org.tbee.cache.simple.LeastRecentlyUsedCache
 
values() - Method in class org.tbee.cache.simple.LifespanCache
 
values() - Method in class org.tbee.cache.simple.LossyHashMap
 
values() - Method in class org.tbee.cache.simple.TimeoutCache
 

A C E F G I K L M N O P R S T V

Copyright © 2010 KnowledgePlaza. All Rights Reserved.