Package com.github.mjeanroy.dbunit.cache
Class CacheFactory
- java.lang.Object
-
- com.github.mjeanroy.dbunit.cache.CacheFactory
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <K,V>
Cache<K,V>newCache(CacheLoader<K,V> loader)
Create new cache.
-
-
-
Method Detail
-
newCache
public static <K,V> Cache<K,V> newCache(CacheLoader<K,V> loader)
Create new cache. Note that:- Type Parameters:
K
- Type of keys in the cache.V
- Type of values in the cache.- Parameters:
loader
- The cache loader.- Returns:
- The new cache instance.
-
-