it.unimi.dsi.fastutil.doubles
Interface Double2ObjectMap<V>

All Superinterfaces:
Double2ObjectFunction<V>, Function<Double,V>, Map<Double,V>
All Known Subinterfaces:
Double2ObjectSortedMap<V>
All Known Implementing Classes:
AbstractDouble2ObjectMap, AbstractDouble2ObjectSortedMap, Double2ObjectArrayMap, Double2ObjectAVLTreeMap, Double2ObjectLinkedOpenHashMap, Double2ObjectMaps.EmptyMap, Double2ObjectMaps.Singleton, Double2ObjectMaps.SynchronizedMap, Double2ObjectMaps.UnmodifiableMap, Double2ObjectOpenHashMap, Double2ObjectRBTreeMap, Double2ObjectSortedMaps.EmptySortedMap, Double2ObjectSortedMaps.Singleton, Double2ObjectSortedMaps.SynchronizedSortedMap, Double2ObjectSortedMaps.UnmodifiableSortedMap

public interface Double2ObjectMap<V>
extends Double2ObjectFunction<V>, Map<Double,V>

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 Double2ObjectMap.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 Double2ObjectMap.Entry<V>
          A type-specific Map.Entry; provides some additional methods that use polymorphism to avoid (un)boxing.
static interface Double2ObjectMap.FastEntrySet<V>
          An entry set providing fast iteration.
 
Method Summary
 ObjectSet<Double2ObjectMap.Entry<V>> double2ObjectEntrySet()
          Returns a type-specific set view of the mappings contained in this map.
 ObjectSet<Map.Entry<Double,V>> entrySet()
          Returns a set view of the mappings contained in this map.
 DoubleSet keySet()
          Returns a set view of the keys contained in this map.
 ObjectCollection<V> values()
          Returns a set view of the values contained in this map.
 
Methods inherited from interface it.unimi.dsi.fastutil.doubles.Double2ObjectFunction
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<Map.Entry<Double,V>> 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 Map<Double,V>
Returns:
a set view of the mappings contained in this map.
See Also:
Map.entrySet()

double2ObjectEntrySet

ObjectSet<Double2ObjectMap.Entry<V>> double2ObjectEntrySet()
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 Double2ObjectMap.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

DoubleSet 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 Map<Double,V>
Returns:
a set view of the keys contained in this map.
See Also:
Map.keySet()

values

ObjectCollection<V> 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 Map<Double,V>
Returns:
a set view of the values contained in this map.
See Also:
Map.values()