net.openhft.collect.map.hash
Interface HashLongIntMap

All Superinterfaces:
Container, HashContainer, LongIntMap, Map<Long,Integer>

public interface HashLongIntMap
extends LongIntMap, HashContainer

An interface for LongIntMaps, based on hash tables.

See Also:
HashLongIntMapFactory, HashLongIntMaps

Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Method Summary
 HashObjSet<Map.Entry<Long,Integer>> entrySet()
          
 HashLongSet keySet()
          
 
Methods inherited from interface net.openhft.collect.map.LongIntMap
addValue, addValue, compute, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, cursor, defaultValue, forEach, forEachWhile, get, get, getOrDefault, getOrDefault, merge, put, put, putIfAbsent, putIfAbsent, remove, remove, remove, remove, removeIf, replace, replace, replace, replace, replaceAll, values
 
Methods inherited from interface java.util.Map
clear, 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
HashLongSet keySet()
Description copied from interface: LongIntMap

Specified by:
keySet in interface LongIntMap
Specified by:
keySet in interface Map<Long,Integer>

entrySet

@Nonnull
HashObjSet<Map.Entry<Long,Integer>> entrySet()
Description copied from interface: LongIntMap

Specified by:
entrySet in interface LongIntMap
Specified by:
entrySet in interface Map<Long,Integer>