it.unimi.dsi.fastutil.bytes
Interface Byte2ShortMap

All Superinterfaces:
Byte2ShortFunction, Function<java.lang.Byte,java.lang.Short>, java.util.Map<java.lang.Byte,java.lang.Short>
All Known Subinterfaces:
Byte2ShortSortedMap
All Known Implementing Classes:
AbstractByte2ShortMap, AbstractByte2ShortSortedMap, Byte2ShortArrayMap, Byte2ShortAVLTreeMap, Byte2ShortLinkedOpenHashMap, Byte2ShortMaps.EmptyMap, Byte2ShortMaps.Singleton, Byte2ShortMaps.SynchronizedMap, Byte2ShortMaps.UnmodifiableMap, Byte2ShortOpenHashMap, Byte2ShortRBTreeMap, Byte2ShortSortedMaps.EmptySortedMap, Byte2ShortSortedMaps.Singleton, Byte2ShortSortedMaps.SynchronizedSortedMap, Byte2ShortSortedMaps.UnmodifiableSortedMap

public interface Byte2ShortMap
extends Byte2ShortFunction, java.util.Map<java.lang.Byte,java.lang.Short>

A type-specific 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 Byte2ShortMap.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).

See Also:
Map

Nested Class Summary
static interface Byte2ShortMap.Entry
          A type-specific Map.Entry; provides some additional methods that use polymorphism to avoid (un)boxing.
static interface Byte2ShortMap.FastEntrySet
          An entry set providing fast iteration.
 
Method Summary
 ObjectSet<Byte2ShortMap.Entry> byte2ShortEntrySet()
          Returns a type-specific set view of the mappings contained in this map.
 boolean containsValue(short value)
           
 ObjectSet<java.util.Map.Entry<java.lang.Byte,java.lang.Short>> entrySet()
          Returns a set view of the mappings contained in this map.
 ByteSet keySet()
          Returns a set view of the keys contained in this map.
 ShortCollection values()
          Returns a set view of the values contained in this map.
 
Methods inherited from interface it.unimi.dsi.fastutil.bytes.Byte2ShortFunction
containsKey, defaultReturnValue, defaultReturnValue, get, put, remove
 
Methods inherited from interface it.unimi.dsi.fastutil.Function
clear, containsKey, get, put, remove, size
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, equals, get, hashCode, isEmpty, put, putAll, remove, size
 

Method Detail

entrySet

ObjectSet<java.util.Map.Entry<java.lang.Byte,java.lang.Short>> entrySet()
Returns a set view of the mappings contained in this map.

Note that this specification strengthens the one given in Map.entrySet().

Specified by:
entrySet in interface java.util.Map<java.lang.Byte,java.lang.Short>
Returns:
a set view of the mappings contained in this map.
See Also:
Map.entrySet()

byte2ShortEntrySet

ObjectSet<Byte2ShortMap.Entry> byte2ShortEntrySet()
Returns a type-specific set view of the mappings contained in this map.

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 Byte2ShortMap.Entry (the latter makes it possible to access keys and values with type-specific methods).

Returns:
a type-specific set view of the mappings contained in this map.
See Also:
entrySet()

keySet

ByteSet keySet()
Returns a set view of the keys contained in this map.

Note that this specification strengthens the one given in Map.keySet().

Specified by:
keySet in interface java.util.Map<java.lang.Byte,java.lang.Short>
Returns:
a set view of the keys contained in this map.
See Also:
Map.keySet()

values

ShortCollection values()
Returns a set view of the values contained in this map.

Note that this specification strengthens the one given in Map.values().

Specified by:
values in interface java.util.Map<java.lang.Byte,java.lang.Short>
Returns:
a set view of the values contained in this map.
See Also:
Map.values()

containsValue

boolean containsValue(short value)
See Also:
Map.containsValue(Object)