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,- StampedCommonCache
public interface ValueConvertable<V1,V2>
To support caches whose values are convertable, e.g. SoftReference, WeakReference
- 
Method SummaryModifier and Type Method Description V2convertValue(V1 value)convert the original value to the target value
- 
Method Details- 
convertValueconvert the original value to the target value- Parameters:
- value- the original value
- Returns:
- the converted value
 
 
-