Searched defs:getIfPresent (Results 1 - 4 of 4) sorted by relevance

/external/guava/guava/src/com/google/common/cache/
H A DCache.java44 * <p>All methods other than {@link #getIfPresent} are optional.
60 V getIfPresent(K key); method in interface:Cache
H A DForwardingCache.java52 public V getIfPresent(K key) { method in class:ForwardingCache
53 return delegate().getIfPresent(key);
H A DLocalCache.java3952 public V getIfPresent(Object key) { method in class:LocalCache
4757 public V getIfPresent(K key) { method in class:LocalCache.LocalManualCache
4758 return localCache.getIfPresent(key);
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DCacheBuilder.java151 public V getIfPresent(K key) { method in class:CacheBuilder.LocalManualCache

Completed in 163 milliseconds