public interface Cache<K,V>
| Modifier and Type | Method and Description | 
|---|---|
| void | clear() | 
| default V | computeIfAbsent(K key,
               Function<? super K,? extends V> mappingFunction) | 
| V | get(K key) | 
| V | put(K key,
   V val) | 
| V | remove(K key) | 
Copyright © 2000-2020 Apache Software Foundation. All Rights Reserved.