Dependencies
Declarations
-
javax
-
cache
-
Cache
-
get(Object): Object
-
getAll(Set<Object>): Map<Object, Object>
-
containsKey(Object): boolean
-
loadAll(Set<Object>, boolean, CompletionListener): void
-
put(Object, Object): void
-
getAndPut(Object, Object): Object
-
putAll(Map<Object, Object>): void
-
putIfAbsent(Object, Object): boolean
-
remove(Object): boolean
-
remove(Object, Object): boolean
-
getAndRemove(Object): Object
-
replace(Object, Object, Object): boolean
-
replace(Object, Object): boolean
-
getAndReplace(Object, Object): Object
-
removeAll(Set<Object>): void
-
removeAll(): void
-
clear(): void
-
getConfiguration(Class<Configuration>): Configuration
-
invoke(Object, EntryProcessor<Object, Object, Object>, Object[]): Object
-
invokeAll(Set<Object>, EntryProcessor<Object, Object, Object>, Object[]): Map<Object, EntryProcessorResult<Object>>
-
getName(): String
-
getCacheManager(): CacheManager
-
close(): void
-
isClosed(): boolean
-
unwrap(Class<Object>): Object
-
registerCacheEntryListener(CacheEntryListenerConfiguration<Object, Object>): void
-
deregisterCacheEntryListener(CacheEntryListenerConfiguration<Object, Object>): void
-
iterator(): Iterator<Entry<Object, Object>>
-
Entry
-
-
CacheException
-
CacheManager
-
getCachingProvider(): CachingProvider
-
getURI(): URI
-
getClassLoader(): ClassLoader
-
getProperties(): Properties
-
createCache(String, Configuration): Cache<Object, Object>
-
getCache(String, Class<Object>, Class<Object>): Cache<Object, Object>
-
getCache(String): Cache<Object, Object>
-
getCacheNames(): Iterable<String>
-
destroyCache(String): void
-
enableManagement(String, boolean): void
-
enableStatistics(String, boolean): void
-
close(): void
-
isClosed(): boolean
-
unwrap(Class<Object>): Object
-
-
Caching
-
JAVAX_CACHE_CACHING_PROVIDER: String
-
CACHING_PROVIDERS: CachingProviderRegistry
-
Caching(): void
-
getDefaultClassLoader(): ClassLoader
-
setDefaultClassLoader(ClassLoader): void
-
getCachingProvider(): CachingProvider
-
getCachingProvider(ClassLoader): CachingProvider
-
getCachingProviders(): Iterable<CachingProvider>
-
getCachingProviders(ClassLoader): Iterable<CachingProvider>
-
getCachingProvider(String): CachingProvider
-
getCachingProvider(String, ClassLoader): CachingProvider
-
getCache(String, Class<Object>, Class<Object>): Cache<Object, Object>
-
CachingProviderRegistry
-
cachingProviders: WeakHashMap<ClassLoader, LinkedHashMap<String, CachingProvider>>
-
classLoader: ClassLoader
-
CachingProviderRegistry(): void
-
getDefaultClassLoader(): ClassLoader
-
setDefaultClassLoader(ClassLoader): void
-
getCachingProvider(): CachingProvider
-
getCachingProvider(ClassLoader): CachingProvider
-
getCachingProviders(): Iterable<CachingProvider>
-
getCachingProviders(ClassLoader): Iterable<CachingProvider>
-
getCachingProvider(String): CachingProvider
-
loadCachingProvider(String, ClassLoader): CachingProvider
-
getCachingProvider(String, ClassLoader): CachingProvider
-
-
- annotation
-
configuration
-
CacheEntryListenerConfiguration
-
CompleteConfiguration
-
isReadThrough(): boolean
-
isWriteThrough(): boolean
-
isStatisticsEnabled(): boolean
-
isManagementEnabled(): boolean
-
getCacheEntryListenerConfigurations(): Iterable<CacheEntryListenerConfiguration<Object, Object>>
-
getCacheLoaderFactory(): Factory<CacheLoader<Object, Object>>
-
getCacheWriterFactory(): Factory<CacheWriter<Object, Object>>
-
getExpiryPolicyFactory(): Factory<ExpiryPolicy>
-
-
Configuration
-
Factory
-
FactoryBuilder
-
MutableCacheEntryListenerConfiguration
-
serialVersionUID: long
-
listenerFactory: Factory<CacheEntryListener<Object, Object>>
-
filterFactory: Factory<CacheEntryEventFilter<Object, Object>>
-
isOldValueRequired: boolean
-
isSynchronous: boolean
-
MutableCacheEntryListenerConfiguration(CacheEntryListenerConfiguration<Object, Object>): void
-
MutableCacheEntryListenerConfiguration(Factory<CacheEntryListener>, Factory<CacheEntryEventFilter>, boolean, boolean): void
-
getCacheEntryListenerFactory(): Factory<CacheEntryListener<Object, Object>>
-
setCacheEntryListenerFactory(Factory<CacheEntryListener>): MutableCacheEntryListenerConfiguration<Object, Object>
-
getCacheEntryEventFilterFactory(): Factory<CacheEntryEventFilter<Object, Object>>
-
setCacheEntryEventFilterFactory(Factory<CacheEntryEventFilter>): MutableCacheEntryListenerConfiguration<Object, Object>
-
isOldValueRequired(): boolean
-
setOldValueRequired(boolean): MutableCacheEntryListenerConfiguration<Object, Object>
-
isSynchronous(): boolean
-
setSynchronous(boolean): MutableCacheEntryListenerConfiguration<Object, Object>
-
hashCode(): int
-
equals(Object): boolean
-
-
MutableConfiguration
-
serialVersionUID: long
-
keyType: Class<Object>
-
valueType: Class<Object>
-
listenerConfigurations: HashSet<CacheEntryListenerConfiguration<Object, Object>>
-
cacheLoaderFactory: Factory<CacheLoader<Object, Object>>
-
cacheWriterFactory: Factory<CacheWriter<Object, Object>>
-
expiryPolicyFactory: Factory<ExpiryPolicy>
-
isReadThrough: boolean
-
isWriteThrough: boolean
-
isStatisticsEnabled: boolean
-
isStoreByValue: boolean
-
isManagementEnabled: boolean
-
MutableConfiguration(): void
-
MutableConfiguration(CompleteConfiguration<Object, Object>): void
-
getKeyType(): Class<Object>
-
getValueType(): Class<Object>
-
setTypes(Class<Object>, Class<Object>): MutableConfiguration<Object, Object>
-
getCacheEntryListenerConfigurations(): Iterable<CacheEntryListenerConfiguration<Object, Object>>
-
addCacheEntryListenerConfiguration(CacheEntryListenerConfiguration<Object, Object>): MutableConfiguration<Object, Object>
-
removeCacheEntryListenerConfiguration(CacheEntryListenerConfiguration<Object, Object>): MutableConfiguration<Object, Object>
-
getCacheLoaderFactory(): Factory<CacheLoader<Object, Object>>
-
setCacheLoaderFactory(Factory<CacheLoader>): MutableConfiguration<Object, Object>
-
getCacheWriterFactory(): Factory<CacheWriter<Object, Object>>
-
setCacheWriterFactory(Factory<CacheWriter>): MutableConfiguration<Object, Object>
-
getExpiryPolicyFactory(): Factory<ExpiryPolicy>
-
setExpiryPolicyFactory(Factory<ExpiryPolicy>): MutableConfiguration<Object, Object>
-
isReadThrough(): boolean
-
setReadThrough(boolean): MutableConfiguration<Object, Object>
-
isWriteThrough(): boolean
-
setWriteThrough(boolean): MutableConfiguration<Object, Object>
-
isStoreByValue(): boolean
-
setStoreByValue(boolean): MutableConfiguration<Object, Object>
-
isStatisticsEnabled(): boolean
-
setStatisticsEnabled(boolean): MutableConfiguration<Object, Object>
-
isManagementEnabled(): boolean
-
setManagementEnabled(boolean): MutableConfiguration<Object, Object>
-
hashCode(): int
-
equals(Object): boolean
-
-
OptionalFeature
-
- event
-
expiry
-
AccessedExpiryPolicy
-
CreatedExpiryPolicy
-
Duration
-
serialVersionUID: long
-
ETERNAL: Duration
-
ONE_DAY: Duration
-
ONE_HOUR: Duration
-
THIRTY_MINUTES: Duration
-
TWENTY_MINUTES: Duration
-
TEN_MINUTES: Duration
-
FIVE_MINUTES: Duration
-
ONE_MINUTE: Duration
-
ZERO: Duration
-
timeUnit: TimeUnit
-
durationAmount: long
-
Duration(): void
-
Duration(TimeUnit, long): void
-
Duration(long, long): void
-
getTimeUnit(): TimeUnit
-
getDurationAmount(): long
-
isEternal(): boolean
-
isZero(): boolean
-
getAdjustedTime(long): long
-
equals(Object): boolean
-
hashCode(): int
-
-
EternalExpiryPolicy
-
ExpiryPolicy
-
ModifiedExpiryPolicy
-
TouchedExpiryPolicy
-
- integration
- management
- processor
-
spi
-
CachingProvider
-
getCacheManager(URI, ClassLoader, Properties): CacheManager
-
getDefaultClassLoader(): ClassLoader
-
getDefaultURI(): URI
-
getDefaultProperties(): Properties
-
getCacheManager(URI, ClassLoader): CacheManager
-
getCacheManager(): CacheManager
-
close(): void
-
close(ClassLoader): void
-
close(URI, ClassLoader): void
-
isSupported(OptionalFeature): boolean
-
-
-
-
cache