Uses of Interface
org.springframework.cache.Cache.ValueWrapper
Packages that use Cache.ValueWrapper
Package
Description
Spring's generic cache abstraction.
Implementation package for 
java.util.concurrent based caches.AOP-based solution for declarative caching demarcation.
Support classes 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.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.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.