Uses of Interface
org.springframework.cache.Cache.ValueWrapper
Packages that use Cache.ValueWrapper
Package
Description
Spring's generic cache abstraction.
Support classes for the open source cache in
 Caffeine library,
 allowing to set up Caffeine caches within Spring's cache abstraction.
Implementation package for 
java.util.concurrent based caches.AOP-based solution for declarative caching demarcation.
Implementation package for JSR-107 (javax.cache aka "JCache") based caches.
Support classes for the org.springframework.cache package.
Transaction-aware decorators for the org.springframework.cache package.
- 
Uses of Cache.ValueWrapper in org.springframework.cacheMethods in org.springframework.cache that return Cache.ValueWrapperModifier and TypeMethodDescriptionReturn the value to which this cache maps the specified key.default Cache.ValueWrapperCache.putIfAbsent(Object key, Object value) Atomically associate the specified value with the specified key in this cache if it is not set already.
- 
Uses of Cache.ValueWrapper in org.springframework.cache.caffeineMethods in org.springframework.cache.caffeine that return Cache.ValueWrapper
- 
Uses of Cache.ValueWrapper in org.springframework.cache.concurrentMethods in org.springframework.cache.concurrent that return Cache.ValueWrapper
- 
Uses of Cache.ValueWrapper in org.springframework.cache.interceptorMethods in org.springframework.cache.interceptor that return Cache.ValueWrapperModifier and TypeMethodDescriptionprotected Cache.ValueWrapperExecuteCache.get(Object)on the specifiedCacheand invoke the error handler if an exception occurs.
- 
Uses of Cache.ValueWrapper in org.springframework.cache.jcacheMethods in org.springframework.cache.jcache that return Cache.ValueWrapper
- 
Uses of Cache.ValueWrapper in org.springframework.cache.supportClasses in org.springframework.cache.support that implement Cache.ValueWrapperModifier and TypeClassDescriptionclassStraightforward implementation ofCache.ValueWrapper, simply holding the value as given at construction and returning it fromSimpleValueWrapper.get().Methods in org.springframework.cache.support that return Cache.ValueWrapperModifier and TypeMethodDescriptionNoOpCache.putIfAbsent(Object key, Object value) protected Cache.ValueWrapperAbstractValueAdaptingCache.toValueWrapper(Object storeValue) Wrap the given store value with aSimpleValueWrapper, also going throughAbstractValueAdaptingCache.fromStoreValue(java.lang.Object)conversion.
- 
Uses of Cache.ValueWrapper in org.springframework.cache.transactionMethods in org.springframework.cache.transaction that return Cache.ValueWrapperModifier and TypeMethodDescriptionTransactionAwareCacheDecorator.putIfAbsent(Object key, Object value)