net.openhft.collect.map.hash
Interface HashIntObjMap<V>

All Superinterfaces:
Container, HashContainer, IntObjMap<V>, Map<Integer,V>

public interface HashIntObjMap<V>
extends IntObjMap<V>, HashContainer

An interface for IntObjMaps, based on hash tables.

See Also:
HashIntObjMapFactory, HashIntObjMaps

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

Specified by:
keySet in interface IntObjMap<V>
Specified by:
keySet in interface Map<Integer,V>

entrySet

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

Specified by:
entrySet in interface IntObjMap<V>
Specified by:
entrySet in interface Map<Integer,V>