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 Detail

      • get

        V get​(K key)