net.openhft.collect.map.hash
Interface HashObjDoubleMap<K>

All Superinterfaces:
Container, HashContainer, Map<K,Double>, ObjDoubleMap<K>

public interface HashObjDoubleMap<K>
extends ObjDoubleMap<K>, HashContainer

An interface for ObjDoubleMaps, based on hash tables.

See Also:
HashObjDoubleMapFactory, HashObjDoubleMaps

Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Method Summary
 HashObjSet<Map.Entry<K,Double>> entrySet()
          
 HashObjSet<K> keySet()
          
 
Methods inherited from interface net.openhft.collect.map.ObjDoubleMap
addValue, addValue, compute, computeIfAbsent, computeIfPresent, containsValue, containsValue, cursor, defaultValue, forEach, forEachWhile, get, getDouble, getOrDefault, getOrDefault, keyEquivalence, merge, put, put, putIfAbsent, putIfAbsent, remove, remove, remove, removeAsDouble, removeIf, replace, replace, replace, replace, replaceAll, values
 
Methods inherited from interface java.util.Map
clear, containsKey, equals, hashCode, isEmpty, putAll, size
 
Methods inherited from interface net.openhft.collect.hash.HashContainer
currentLoad, ensureCapacity, hashConfig, shrink
 
Methods inherited from interface net.openhft.collect.Container
clear, isEmpty, size, sizeAsLong
 

Method Detail

keySet

@Nonnull
HashObjSet<K> keySet()
Description copied from interface: ObjDoubleMap

Specified by:
keySet in interface Map<K,Double>
Specified by:
keySet in interface ObjDoubleMap<K>

entrySet

@Nonnull
HashObjSet<Map.Entry<K,Double>> entrySet()
Description copied from interface: ObjDoubleMap

Specified by:
entrySet in interface Map<K,Double>
Specified by:
entrySet in interface ObjDoubleMap<K>