Interface Cache<K,V>

All Known Implementing Classes:
ConcurrentLruCache, LruCache

public interface Cache<K,V>
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    get(K key)
     
    void
    put(K key, V value)
     
  • Method Details

    • containsKey

      boolean containsKey(K key)
    • get

      V get(K key)
    • put

      void put(K key, V value)