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

All Superinterfaces:
Container, HashContainer, Map<K,Byte>, ObjByteMap<K>

public interface HashObjByteMap<K>
extends ObjByteMap<K>, HashContainer

An interface for ObjByteMaps, based on hash tables.

See Also:
HashObjByteMapFactory, HashObjByteMaps

Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Method Summary
 HashObjSet<Map.Entry<K,Byte>> entrySet()
          
 HashObjSet<K> keySet()
          
 
Methods inherited from interface net.openhft.collect.map.ObjByteMap
addValue, addValue, compute, computeIfAbsent, computeIfPresent, containsValue, containsValue, cursor, defaultValue, forEach, forEachWhile, get, getByte, getOrDefault, getOrDefault, keyEquivalence, merge, put, put, putIfAbsent, putIfAbsent, remove, remove, remove, removeAsByte, 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: ObjByteMap

Specified by:
keySet in interface Map<K,Byte>
Specified by:
keySet in interface ObjByteMap<K>

entrySet

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

Specified by:
entrySet in interface Map<K,Byte>
Specified by:
entrySet in interface ObjByteMap<K>