public class LRUCache<K,V> extends Object
LRUCache(int cacheSize)
void
forEach(BiConsumer<? super K,? super V> action)
V
get(K key)
put(K key, V value)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public LRUCache(int cacheSize)
public void forEach(BiConsumer<? super K,? super V> action)
public V get(K key)
public void put(K key, V value)
Copyright © 2024. All rights reserved.