java.lang.Object
org.apache.jena.atlas.lib.cache.Cache1<K,V>
- All Implemented Interfaces:
Cache<K,V>
A one-slot cache.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()booleancontainsKey(K key) Does the cache contain the key?Get from cache; if not present, call theFunctionto fill the cache slot.getIfPresent(K key) Get from cache - or return null.booleanisEmpty()keys()Iterate over all keys.voidInsert into the cachevoidRemove from cache - return true if key referenced an entrylongsize()Current size of cache
-
Constructor Details
-
Cache1
public Cache1() -
Cache1
-
-
Method Details
-
containsKey
Description copied from interface:CacheDoes the cache contain the key?- Specified by:
containsKeyin interfaceCache<K,V> - Parameters:
key- The key to find. The key must not be null.- Returns:
- True, if the cache contains the key, otherwise false.
-
getIfPresent
Description copied from interface:CacheGet from cache - or return null.- Specified by:
getIfPresentin interfaceCache<K,V> - Parameters:
key- The key for which the value is requested. The key must not be null.- Returns:
- If the cache contains an entry for the given key, the value is returned, otherwise null.
-
get
Description copied from interface:CacheGet from cache; if not present, call theFunctionto fill the cache slot. This operation should be atomic.- Specified by:
getin interfaceCache<K,V> - Parameters:
key- The key, for which the value should be returned or calculated. The key must not be null.function- If the cache does not contain the key, the callable is called to calculate a value. If the callable returns null, the key is not associated with hat value, as nulls are not accepted as values. The callable must not be null.- Returns:
- Returns either the existing value or the calculated value. If callable is called and returns null, then null is returned.
-
clear
public void clear() -
isEmpty
public boolean isEmpty() -
keys
Description copied from interface:CacheIterate over all keys. Iterating over the keys requires the caller be thread-safe. -
put
Description copied from interface:CacheInsert into the cache -
remove
Description copied from interface:CacheRemove from cache - return true if key referenced an entry -
size
public long size()Description copied from interface:CacheCurrent size of cache
-