Interface Cache<K,V>

All Known Implementing Classes:
SimpleCache

public interface Cache<K,V>
Author:
Nils Olsson
  • Method Summary

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

    • add

      void add(K key, V value)
    • get

      V get(K key)
    • contains

      boolean contains(K key)