public interface Short2IntMap extends Short2IntFunction, Map<Short,Integer>
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 Short2IntMap.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 |
Short2IntMap.Entry
A type-specific
Map.Entry; provides some additional methods
that use polymorphism to avoid (un)boxing. |
static interface |
Short2IntMap.FastEntrySet
An entry set providing fast iteration.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsValue(int value) |
ObjectSet<Map.Entry<Short,Integer>> |
entrySet()
Returns a set view of the mappings contained in this map.
|
ShortSet |
keySet()
Returns a set view of the keys contained in this map.
|
ObjectSet<Short2IntMap.Entry> |
short2IntEntrySet()
Returns a type-specific set view of the mappings contained in this map.
|
IntCollection |
values()
Returns a set view of the values contained in this map.
|
containsKey, defaultReturnValue, defaultReturnValue, get, put, removeObjectSet<Map.Entry<Short,Integer>> entrySet()
Note that this specification strengthens the one given in Map.entrySet().
entrySet in interface Map<Short,Integer>Map.entrySet()ObjectSet<Short2IntMap.Entry> short2IntEntrySet()
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 objects of type Map.Entry (the latter makes it possible to
access keys and values with type-specific methods).
entrySet()ShortSet keySet()
Note that this specification strengthens the one given in Map.keySet().
keySet in interface Map<Short,Integer>Map.keySet()IntCollection values()
Note that this specification strengthens the one given in Map.values().
values in interface Map<Short,Integer>Map.values()boolean containsValue(int value)
Map.containsValue(Object)