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
Fields in javax.cache with type parameters of type CachingProvider Modifier and Type Field Description private java.util.WeakHashMap<java.lang.ClassLoader,java.util.LinkedHashMap<java.lang.String,CachingProvider>>
Caching.CachingProviderRegistry. cachingProviders
TheCachingProvider
s by Class Name organized by theClassLoader
was used to load them.Methods in javax.cache that return CachingProvider Modifier and Type Method Description CachingProvider
CacheManager. getCachingProvider()
Get theCachingProvider
that created and is responsible for theCacheManager
.CachingProvider
Caching.CachingProviderRegistry. getCachingProvider()
Obtains the onlyCachingProvider
defined by theCaching.CachingProviderRegistry.getDefaultClassLoader()
.CachingProvider
Caching.CachingProviderRegistry. getCachingProvider(java.lang.ClassLoader classLoader)
Obtains the onlyCachingProvider
defined by the specifiedClassLoader
.CachingProvider
Caching.CachingProviderRegistry. getCachingProvider(java.lang.String fullyQualifiedClassName)
Obtain theCachingProvider
that is implemented by the specified fully qualified class name using theCaching.CachingProviderRegistry.getDefaultClassLoader()
.CachingProvider
Caching.CachingProviderRegistry. getCachingProvider(java.lang.String fullyQualifiedClassName, java.lang.ClassLoader classLoader)
Obtain theCachingProvider
that is implemented by the specified fully qualified class name using the providedClassLoader
.static CachingProvider
Caching. getCachingProvider()
Obtains the defaultCachingProvider
available via theCaching.getDefaultClassLoader()
.static CachingProvider
Caching. getCachingProvider(java.lang.ClassLoader classLoader)
Obtains the singleCachingProvider
visible to the specifiedClassLoader
.static CachingProvider
Caching. getCachingProvider(java.lang.String fullyQualifiedClassName)
Obtain theCachingProvider
that is implemented by the specified fully qualified class name using theCaching.getDefaultClassLoader()
.static CachingProvider
Caching. getCachingProvider(java.lang.String fullyQualifiedClassName, java.lang.ClassLoader classLoader)
Obtain theCachingProvider
that is implemented by the specified fully qualified class name using the providedClassLoader
.protected CachingProvider
Caching.CachingProviderRegistry. loadCachingProvider(java.lang.String fullyQualifiedClassName, java.lang.ClassLoader classLoader)
Load and instantiate theCachingProvider
with 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 java.lang.Iterable<CachingProvider>
Caching.CachingProviderRegistry. getCachingProviders()
Obtain theCachingProvider
s that are available via theCaching.CachingProviderRegistry.getDefaultClassLoader()
.java.lang.Iterable<CachingProvider>
Caching.CachingProviderRegistry. getCachingProviders(java.lang.ClassLoader classLoader)
Obtain theCachingProvider
s that are available via the specifiedClassLoader
.static java.lang.Iterable<CachingProvider>
Caching. getCachingProviders()
Obtains theCachingProvider
s that are available via theCaching.getDefaultClassLoader()
.static java.lang.Iterable<CachingProvider>
Caching. getCachingProviders(java.lang.ClassLoader classLoader)
Obtains theCachingProvider
s that are available via the specifiedClassLoader
.
-