LruCache.create(Object)
returned a value.LruCache.entryRemoved(boolean, K, V, V)
on each removed entry.key
if it exists in the cache or can be
created by #create
.LruCache.get(K)
returned a value that was
already present in the cache.LruCache
.LruCache.sizeOf(K, V)
, this returns the maximum
number of entries in the cache.LruCache.get(K)
returned null or required a new
value to be created.value
for key
.LruCache.put(K, V)
was called.key
if it exists.LruCache.sizeOf(K, V)
, this returns the number
of entries in the cache.key
and value
in
user-defined units.