Package org.infinispan.commons.util
Interface PeekableMap<K,V>
- Type Parameters:
K
-V
-
- All Superinterfaces:
Map<K,
V>
Deprecated, for removal: This API element is subject to removal in a future version.
since 11.0 with no replacement - no longer used
-
Nested Class Summary
-
Method Summary
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Method Details
-
peek
Deprecated, for removal: This API element is subject to removal in a future version.Peaks at a value for the given key. Note that this does not update any expiration or eviction information when this is performed on the map, unlike the get method.- Parameters:
key
- The key to find the value for- Returns:
- The value mapping to this key
-