public interface Cache<K,V> extends Iterable<Map.Entry<K,V>>
void
clearValues()
V
getValue(K key)
boolean
isEmpty()
isFull()
putValue(K key, V value)
putValues(Cache<K,V> cache)
removeValue(K key)
int
size()
forEach, iterator, spliterator
int size()
V getValue(K key)
void putValue(K key, V value)
void putValues(Cache<K,V> cache)
V removeValue(K key)
void clearValues()
boolean isEmpty()
boolean isFull()
Copyright © 2019. All rights reserved.