public interface AppCache<K,V>
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(K key) |
V |
get(K key) |
Object |
getImpl() |
void |
put(K key,
V value) |
boolean |
putIfAbsent(K key,
V value) |
boolean |
remove(K key) |
boolean |
remove(K key,
V oldValue) |
void |
removeAll() |
void |
removeAll(Set<? extends K> keys) |
boolean |
replace(K key,
V value) |
boolean |
replace(K key,
V oldValue,
V newValue) |
Copyright © 2017. All rights reserved.