接口 CacheMap<K,V>

类型参数:
K - type of the key
V - type of the value
所有已知实现类:
ConcurrentLinkedHashMapWrapper

public interface CacheMap<K,V>
A common cache map interface.
从以下版本开始:
0.2.0
作者:
Eric Zhao
  • 方法详细资料

    • containsKey

      boolean containsKey(K key)
    • get

      V get(K key)
    • remove

      V remove(K key)
    • put

      V put(K key, V value)
    • putIfAbsent

      V putIfAbsent(K key, V value)
    • size

      long size()
    • clear

      void clear()
    • keySet

      Set<K> keySet(boolean ascending)