public static class Object2ShortMaps.Singleton<K> extends Object2ShortFunctions.Singleton<K> implements Object2ShortMap<K>, Serializable, Cloneable
This class may be useful to implement your own in case you subclass a type-specific map.
Object2ShortMap.Entry<K>, Object2ShortMap.FastEntrySet<K>
Modifier and Type | Method and Description |
---|---|
boolean |
containsValue(Object ov) |
boolean |
containsValue(short v) |
ObjectSet<Map.Entry<K,Short>> |
entrySet()
Returns a set view of the mappings contained in this map.
|
boolean |
equals(Object o) |
int |
hashCode() |
boolean |
isEmpty() |
ObjectSet<K> |
keySet()
Returns a set view of the keys contained in this map.
|
ObjectSet<Object2ShortMap.Entry<K>> |
object2ShortEntrySet()
Returns a type-specific set view of the mappings contained in this map.
|
void |
putAll(Map<? extends K,? extends Short> m) |
String |
toString() |
ShortCollection |
values()
Returns a set view of the values contained in this map.
|
clone, containsKey, getShort, size
clear, defaultReturnValue, defaultReturnValue, get, put, put, remove, removeShort
defaultReturnValue, defaultReturnValue, getShort, put, removeShort
public boolean containsValue(short v)
containsValue
in interface Object2ShortMap<K>
Map.containsValue(Object)
public boolean containsValue(Object ov)
containsValue
in interface Map<K,Short>
public ObjectSet<Object2ShortMap.Entry<K>> object2ShortEntrySet()
Object2ShortMap
This method is necessary because there is no inheritance along
type parameters: it is thus impossible to strengthen Object2ShortMap.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).
object2ShortEntrySet
in interface Object2ShortMap<K>
Object2ShortMap.entrySet()
public ObjectSet<K> keySet()
Object2ShortMap
Note that this specification strengthens the one given in Map.keySet()
.
keySet
in interface Object2ShortMap<K>
keySet
in interface Map<K,Short>
Map.keySet()
public ShortCollection values()
Object2ShortMap
Note that this specification strengthens the one given in Map.values()
.
values
in interface Object2ShortMap<K>
values
in interface Map<K,Short>
Map.values()
public ObjectSet<Map.Entry<K,Short>> entrySet()
Object2ShortMap
Note that this specification strengthens the one given in Map.entrySet()
.
entrySet
in interface Object2ShortMap<K>
entrySet
in interface Map<K,Short>
Map.entrySet()
public int hashCode()
public boolean equals(Object o)