public interface Reference2ShortMap<K> extends Reference2ShortFunction<K>, Map<K,Short>
Map
; provides some additional methods that use polymorphism to avoid (un)boxing, and handling of a default return value.
Besides extending the corresponding type-specific function, this interface strengthens entrySet()
, keySet()
and values()
.
Maps returning entry sets of type Reference2ShortMap.FastEntrySet
support also fast iteration.
A submap or subset may or may not have an independent default return value (which however must be initialized to the default return value of the originator).
Map
Modifier and Type | Interface and Description |
---|---|
static interface |
Reference2ShortMap.Entry<K>
A type-specific
Map.Entry ; provides some additional methods that use polymorphism to avoid (un)boxing. |
static interface |
Reference2ShortMap.FastEntrySet<K>
An entry set providing fast iteration.
|
Modifier and Type | Method and Description |
---|---|
boolean |
containsValue(short value) |
ObjectSet<Map.Entry<K,Short>> |
entrySet()
Returns a set view of the mappings contained in this map.
|
ReferenceSet<K> |
keySet()
Returns a set view of the keys contained in this map.
|
ObjectSet<Reference2ShortMap.Entry<K>> |
reference2ShortEntrySet()
Returns a type-specific set view of the mappings contained in this map.
|
ShortCollection |
values()
Returns a set view of the values contained in this map.
|
defaultReturnValue, defaultReturnValue, getShort, put, removeShort
clear, containsKey, get, put, remove, size
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size
ObjectSet<Map.Entry<K,Short>> entrySet()
Note that this specification strengthens the one given in Map.entrySet()
.
entrySet
in interface Map<K,Short>
Map.entrySet()
ObjectSet<Reference2ShortMap.Entry<K>> reference2ShortEntrySet()
This method is necessary because there is no inheritance along type parameters: it is thus impossible to strengthen entrySet()
so that it returns an
ObjectSet
of type-specific entries (the latter makes it possible to access keys and values with type-specific methods).
entrySet()
ReferenceSet<K> keySet()
Note that this specification strengthens the one given in Map.keySet()
.
keySet
in interface Map<K,Short>
Map.keySet()
ShortCollection values()
Note that this specification strengthens the one given in Map.values()
.
values
in interface Map<K,Short>
Map.values()
boolean containsValue(short value)
Map.containsValue(Object)