Uses of Class
org.cache2k.configuration.Cache2kConfiguration
-
Packages that use Cache2kConfiguration Package Description org.cache2k API package for cache2k Java caching library.org.cache2k.configuration The cache configuration as a Java bean and support types.org.cache2k.spi Service provider interface that is used by the cache2k implementation. -
-
Uses of Cache2kConfiguration in org.cache2k
Methods in org.cache2k that return Cache2kConfiguration Modifier and Type Method Description Cache2kConfiguration<K,V>
Cache2kBuilder. toConfiguration()
Returns the configuration object this builder operates on.Methods in org.cache2k with parameters of type Cache2kConfiguration Modifier and Type Method Description abstract <K,V>
Cache<K,V>CacheManager. createCache(Cache2kConfiguration<K,V> cfg)
Create a new cache from the configuration.static <K,V>
Cache2kBuilder<K,V>Cache2kBuilder. of(Cache2kConfiguration<K,V> c)
Create a builder from the configuration. -
Uses of Cache2kConfiguration in org.cache2k.configuration
Methods in org.cache2k.configuration that return Cache2kConfiguration Modifier and Type Method Description <K,V>
Cache2kConfiguration<K,V>CacheBuildContext. getConfiguration()
The effective cache configuration.static <K,V>
Cache2kConfiguration<K,V>Cache2kConfiguration. of(Class<K> keyType, Class<V> valueType)
Construct a config instance setting the type parameters and returning a proper generic type.static <K,V>
Cache2kConfiguration<K,V>Cache2kConfiguration. of(Class<K> keyType, CacheType<V> valueType)
Construct a config instance setting the type parameters and returning a proper generic type.static <K,V>
Cache2kConfiguration<K,V>Cache2kConfiguration. of(CacheType<K> keyType, Class<V> valueType)
Construct a config instance setting the type parameters and returning a proper generic type.static <K,V>
Cache2kConfiguration<K,V>Cache2kConfiguration. of(CacheType<K> keyType, CacheType<V> valueType)
Construct a config instance setting the type parameters and returning a proper generic type. -
Uses of Cache2kConfiguration in org.cache2k.spi
Methods in org.cache2k.spi that return Cache2kConfiguration Modifier and Type Method Description Cache2kConfiguration
Cache2kCoreProvider. getDefaultConfiguration(CacheManager m)
Return the effective default configuration for this manager.Methods in org.cache2k.spi with parameters of type Cache2kConfiguration Modifier and Type Method Description <K,V>
Cache<K,V>Cache2kCoreProvider. createCache(CacheManager m, Cache2kConfiguration<K,V> cfg)
Create a cache, apply external configuration before creating it.
-