Package jadx.gui.utils.cache
Class ValueCache<K,V>
- java.lang.Object
-
- jadx.gui.utils.cache.ValueCache<K,V>
-
- Type Parameters:
K- key object typeV- stored object type
public class ValueCache<K,V> extends java.lang.ObjectSimple store for values depending on 'key' object.
-
-
Constructor Summary
Constructors Constructor Description ValueCache()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vget(K requestKey, java.util.function.Function<K,V> loadFunc)Return a stored object if key not changed, load a new object overwise.
-