Package | Description |
---|---|
icy.image.cache |
Modifier and Type | Method and Description |
---|---|
void |
EHCache2.clear() |
abstract void |
AbstractCache.clear()
Clear the cache
|
static java.util.Map<IcyBufferedImage,java.lang.Object> |
ImageCache.get(java.util.Collection<IcyBufferedImage> keys)
Get all data array from cache from a given Collection of
IcyBufferedImage |
static java.lang.Object |
ImageCache.get(IcyBufferedImage key)
Get the corresponding data array (2D native array) from cache from a given
IcyBufferedImage |
java.lang.Object |
EHCache2.get(java.lang.Integer key) |
abstract java.lang.Object |
AbstractCache.get(java.lang.Integer key)
Get an object from cache from its key
|
static java.util.Collection<IcyBufferedImage> |
ImageCache.getAllKeys()
Get all data
IcyBufferedImage in the cache |
java.util.Collection<java.lang.Integer> |
EHCache2.getAllKeys() |
abstract java.util.Collection<java.lang.Integer> |
AbstractCache.getAllKeys()
Get all element keys in the cache
|
static void |
ImageCache.remove(IcyBufferedImage key)
Remove an object from the cache from its key
|
void |
EHCache2.remove(java.lang.Integer key) |
abstract void |
AbstractCache.remove(java.lang.Integer key)
Remove an object from the cache from its key
|
static void |
ImageCache.set(IcyBufferedImage key,
java.lang.Object object,
boolean eternal)
Put the specified data array (2D native array) into cache with its associated key
|
void |
EHCache2.set(java.lang.Integer key,
java.lang.Object object,
boolean eternal) |
abstract void |
AbstractCache.set(java.lang.Integer key,
java.lang.Object object,
boolean eternal)
Put an object in cache with its associated key
|