public class LruCache<K,V> extends Object implements Serializable
LruCache(int cacheSize)
boolean
contains(K k)
V
get(K k)
void
put(K k, V v)
remove(K k)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public LruCache(int cacheSize)
public void put(K k, V v)
public boolean contains(K k)
public V remove(K k)
public V get(K k)
Copyright © 2017. All rights reserved.