Uses of Interface
javax.cache.spi.CachingProvider
-
Packages that use CachingProvider Package Description javax.cache This package contains the API for JCache. -
-
Uses of CachingProvider in javax.cache
Methods in javax.cache that return CachingProvider Modifier and Type Method Description CachingProvider
CacheManager. getCachingProvider()
Get theCachingProvider
that created and is responsible for theCacheManager
.static CachingProvider
Caching. getCachingProvider()
Obtains the defaultCachingProvider
available via theCaching.getDefaultClassLoader()
.static CachingProvider
Caching. getCachingProvider(ClassLoader classLoader)
Obtains the singleCachingProvider
visible to the specifiedClassLoader
.static CachingProvider
Caching. getCachingProvider(String fullyQualifiedClassName)
Obtain theCachingProvider
that is implemented by the specified fully qualified class name using theCaching.getDefaultClassLoader()
.static CachingProvider
Caching. getCachingProvider(String fullyQualifiedClassName, ClassLoader classLoader)
Obtain theCachingProvider
that is implemented by the specified fully qualified class name using the providedClassLoader
.Methods in javax.cache that return types with arguments of type CachingProvider Modifier and Type Method Description static Iterable<CachingProvider>
Caching. getCachingProviders()
Obtains theCachingProvider
s that are available via theCaching.getDefaultClassLoader()
.static Iterable<CachingProvider>
Caching. getCachingProviders(ClassLoader classLoader)
Obtains theCachingProvider
s that are available via the specifiedClassLoader
.
-