Method
getOrDefault
guava/src/com/google/common/cache/LocalCache.java:3999–4003
· guava/src/com/google/common/cache/LocalCache.java::LocalCache.getOrDefault
(@Nullable Object key, @Nullable V defaultValue)
Source from the content-addressed store, hash-verified
| 3997 | } |
| 3998 | |
| 3999 | @Override |
| 4000 | public @Nullable V getOrDefault(@Nullable Object key, @Nullable V defaultValue) { |
| 4001 | V result = get(key); |
| 4002 | return (result != null) ? result : defaultValue; |
| 4003 | } |
| 4004 | |
| 4005 | V getOrLoad(K key) throws ExecutionException { |
| 4006 | return get(key, defaultLoader); |
Tested by
no test coverage detected