public class SimpleCache<K,V> extends Object implements Cache<K,V>
SimpleCache(int limit)
SimpleCache(int limit, CacheType type)
V
get(K key)
getSilent(K key)
void
put(K key, V value)
remove(K key)
int
size()
String
toString()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
public SimpleCache(int limit, CacheType type)
public SimpleCache(int limit)
public void put(K key, V value)
put
Cache<K,V>
public V get(K key)
get
public V getSilent(K key)
getSilent
public void remove(K key)
remove
public int size()
size
public String toString()
toString
Object