Package generic.cache
Interface Factory<K,V>
- 
- Type Parameters:
 K- the key used to get a valueV- the value returned for the given key
- All Known Implementing Classes:
 FixedSizeMRUCachingFactory
public interface Factory<K,V>A simple interface that can build, lookup or otherwise return a valueVfor a keyK. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vget(K key) 
 -