Package generic.cache

Interface Factory<K,V>

Type Parameters:
K - the key used to get a value
V - 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 value V for a key K.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    get(K key)
     
  • Method Details Link icon

    • get Link icon

      V get(K key)