net.openhft.collect.map.hash
Interface HashObjObjMap<K,V>

All Superinterfaces:
Container, HashContainer, Map<K,V>, ObjObjMap<K,V>

public interface HashObjObjMap<K,V>
extends ObjObjMap<K,V>, HashContainer

An interface for ObjObjMaps, based on hash tables.

See Also:
HashObjObjMapFactory, HashObjObjMaps

Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Method Summary
 HashObjSet<Map.Entry<K,V>> entrySet()
          
 HashObjSet<K> keySet()
          
 
Methods inherited from interface net.openhft.collect.map.ObjObjMap
compute, computeIfAbsent, computeIfPresent, cursor, forEach, forEachWhile, getOrDefault, keyEquivalence, merge, putIfAbsent, remove, removeIf, replace, replace, replaceAll, valueEquivalence, values
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, equals, get, hashCode, isEmpty, put, putAll, remove, 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: ObjObjMap

Specified by:
keySet in interface Map<K,V>
Specified by:
keySet in interface ObjObjMap<K,V>

entrySet

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

Specified by:
entrySet in interface Map<K,V>
Specified by:
entrySet in interface ObjObjMap<K,V>