Interface ValueConvertable<V1,V2>
- 
- Type Parameters:
- V1- source value type, e.g. SoftReference, WeakReference
- V2- target value type, e.g. value that SoftReference or WeakReference referenced
 - All Known Implementing Classes:
- CommonCache,- ConcurrentCommonCache,- ConcurrentSoftCache
 
 public interface ValueConvertable<V1,V2>To support caches whose values are convertable, e.g. SoftReference, WeakReference
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description V2convertValue(V1 value)convert the original value to the target value
 
-