Interface Cache<K,V>


public interface Cache<K,V>
Common cache interface.
Author:
Daniel Sagenschneider
  • Method Summary

    Modifier and Type
    Method
    Description
    get(K key)
    Obtains the value for the key.
  • Method Details

    • get

      V get(K key)
      Obtains the value for the key.
      Parameters:
      key - Key of cached value.
      Returns:
      Value or null if no value available for key.