it.unimi.dsi.fastutil.shorts
Class Short2IntMaps.SynchronizedMap

java.lang.Object
  extended byit.unimi.dsi.fastutil.shorts.AbstractShort2IntMap
      extended byit.unimi.dsi.fastutil.shorts.Short2IntMaps.SynchronizedMap
All Implemented Interfaces:
Map, Serializable, Short2IntMap
Direct Known Subclasses:
Short2IntSortedMaps.SynchronizedSortedMap
Enclosing class:
Short2IntMaps

public static class Short2IntMaps.SynchronizedMap
extends AbstractShort2IntMap
implements Short2IntMap, Serializable

A synchronized wrapper class for maps.

See Also:
Serialized Form

Nested Class Summary
 
Nested classes inherited from class it.unimi.dsi.fastutil.shorts.AbstractShort2IntMap
AbstractShort2IntMap.BasicEntry
 
Nested classes inherited from class it.unimi.dsi.fastutil.shorts.Short2IntMap
Short2IntMap.Entry
 
Field Summary
static long serialVersionUID
           
 
Method Summary
 void clear()
           
 boolean containsKey(Object ok)
           
 boolean containsKey(short k)
          Checks whether the given value is contained in keySet().
 boolean containsValue(int v)
          Checks whether the given value is contained in values().
 boolean containsValue(Object ov)
           
 int defaultReturnValue()
          Gets the default return value.
 void defaultReturnValue(int defRetValue)
          Sets the default return value.
 Set entrySet()
           
 Object get(Object ok)
          Delegates to the corresponding type-specific method, taking care of returning null on a missing key.
 int get(short k)
          Returns the value to which the given key is mapped.
 Set keySet()
          Returns a type-specific-set view of the keys of this map.
 Object put(Object k, Object v)
          Delegates to the corresponding type-specific method, taking care of returning null on a missing key.
 int put(short k, int v)
          Adds a pair to the map.
 void putAll(Map m)
          Puts all pairs in the given map.
 void putAll(Short2IntMap c)
           
 Object remove(Object ok)
          Delegates to the corresponding type-specific method, taking care of returning null on a missing key.
 int remove(short k)
          Removes the mapping with the given key.
 int size()
           
 String toString()
           
 Collection values()
          Returns a type-specific-set view of the values of this map.
 
Methods inherited from class it.unimi.dsi.fastutil.shorts.AbstractShort2IntMap
equals, getDefRetValue, hashCode, isEmpty, setDefRetValue
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface it.unimi.dsi.fastutil.shorts.Short2IntMap
getDefRetValue, setDefRetValue
 
Methods inherited from interface java.util.Map
equals, hashCode, isEmpty
 

Field Detail

serialVersionUID

public static final long serialVersionUID
See Also:
Constant Field Values
Method Detail

remove

public Object remove(Object ok)
Description copied from class: AbstractShort2IntMap
Delegates to the corresponding type-specific method, taking care of returning null on a missing key.

This method must check whether the provided key is in the map using containsKey(). Thus, it probes the map twice. Implementors of subclasses should override it with a more efficient method.

Specified by:
remove in interface Map
Overrides:
remove in class AbstractShort2IntMap

get

public Object get(Object ok)
Description copied from class: AbstractShort2IntMap
Delegates to the corresponding type-specific method, taking care of returning null on a missing key.

This method must check whether the provided key is in the map using containsKey(). Thus, it probes the map twice. Implementors of subclasses should override it with a more efficient method.

Specified by:
get in interface Map
Overrides:
get in class AbstractShort2IntMap

size

public int size()
Specified by:
size in interface Map

containsKey

public boolean containsKey(short k)
Description copied from class: AbstractShort2IntMap
Checks whether the given value is contained in AbstractShort2IntMap.keySet().

Specified by:
containsKey in interface Short2IntMap
Overrides:
containsKey in class AbstractShort2IntMap

containsValue

public boolean containsValue(int v)
Description copied from class: AbstractShort2IntMap
Checks whether the given value is contained in AbstractShort2IntMap.values().

Specified by:
containsValue in interface Short2IntMap
Overrides:
containsValue in class AbstractShort2IntMap

defaultReturnValue

public int defaultReturnValue()
Description copied from interface: Short2IntMap
Gets the default return value.

Specified by:
defaultReturnValue in interface Short2IntMap
Overrides:
defaultReturnValue in class AbstractShort2IntMap

defaultReturnValue

public void defaultReturnValue(int defRetValue)
Description copied from interface: Short2IntMap
Sets the default return value. This value must be returned by type-specific versions of get(), put() and remove() to denote that the map does not contain the specified key. It must be 0/false/null by default.

Specified by:
defaultReturnValue in interface Short2IntMap
Overrides:
defaultReturnValue in class AbstractShort2IntMap

put

public int put(short k,
               int v)
Description copied from interface: Short2IntMap
Adds a pair to the map.

Specified by:
put in interface Short2IntMap
Overrides:
put in class AbstractShort2IntMap

putAll

public void putAll(Short2IntMap c)

putAll

public void putAll(Map m)
Description copied from class: AbstractShort2IntMap
Puts all pairs in the given map. If the map implements the interface of this map, it uses the faster iterators.

Specified by:
putAll in interface Map
Overrides:
putAll in class AbstractShort2IntMap
Parameters:
m - a map.

entrySet

public Set entrySet()
Specified by:
entrySet in interface Map

keySet

public Set keySet()
Description copied from class: AbstractShort2IntMap
Returns a type-specific-set view of the keys of this map.

The view is backed by the set returned by Map.entrySet(). Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.

Specified by:
keySet in interface Map
Overrides:
keySet in class AbstractShort2IntMap
Returns:
a set view of the keys of this map; it may be safely cast to a type-specific interface.

values

public Collection values()
Description copied from class: AbstractShort2IntMap
Returns a type-specific-set view of the values of this map.

The view is backed by the set returned by Map.entrySet(). Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.

Specified by:
values in interface Map
Overrides:
values in class AbstractShort2IntMap
Returns:
a set view of the values of this map; it may be safely cast to a type-specific interface.

clear

public void clear()
Specified by:
clear in interface Map
Overrides:
clear in class AbstractShort2IntMap

toString

public String toString()
Overrides:
toString in class AbstractShort2IntMap

put

public Object put(Object k,
                  Object v)
Description copied from class: AbstractShort2IntMap
Delegates to the corresponding type-specific method, taking care of returning null on a missing key.

This method must check whether the provided key is in the map using containsKey(). Thus, it probes the map twice. Implementors of subclasses should override it with a more efficient method.

Specified by:
put in interface Map
Overrides:
put in class AbstractShort2IntMap

remove

public int remove(short k)
Description copied from interface: Short2IntMap
Removes the mapping with the given key.

Specified by:
remove in interface Short2IntMap
Overrides:
remove in class AbstractShort2IntMap

get

public int get(short k)
Description copied from interface: Short2IntMap
Returns the value to which the given key is mapped.

Specified by:
get in interface Short2IntMap
Parameters:
k - the key.
Returns:
the corresponding value, or the default return value if no value was present for the given key.
See Also:
Map.get(Object)

containsKey

public boolean containsKey(Object ok)
Specified by:
containsKey in interface Map
Overrides:
containsKey in class AbstractShort2IntMap

containsValue

public boolean containsValue(Object ov)
Specified by:
containsValue in interface Map
Overrides:
containsValue in class AbstractShort2IntMap