Uses of Interface
com.carrotsearch.hppc.ObjectObjectAssociativeContainer
-
Packages that use ObjectObjectAssociativeContainer Package Description com.carrotsearch.hppc -
-
Uses of ObjectObjectAssociativeContainer in com.carrotsearch.hppc
Subinterfaces of ObjectObjectAssociativeContainer in com.carrotsearch.hppc Modifier and Type Interface Description interface
ObjectObjectMap<KType,VType>
An associative container with unique binding from keys to a single value.Classes in com.carrotsearch.hppc that implement ObjectObjectAssociativeContainer Modifier and Type Class Description class
ObjectObjectHashMap<KType,VType>
A hash map ofObject
toObject
, implemented using open addressing with linear probing for collision resolution.class
ObjectObjectIdentityHashMap<KType,VType>
An identity hash map ofObject
toObject
.class
ObjectObjectScatterMap<KType,VType>
Same asObjectObjectHashMap
but does not implement per-instance key mixing strategy and uses a simpler (faster) bit distribution function.Methods in com.carrotsearch.hppc with parameters of type ObjectObjectAssociativeContainer Modifier and Type Method Description int
ObjectObjectHashMap. putAll(ObjectObjectAssociativeContainer<? extends KType,? extends VType> container)
Puts all keys from another container to this map, replacing the values of existing keys, if such keys are present.int
ObjectObjectMap. putAll(ObjectObjectAssociativeContainer<? extends KType,? extends VType> container)
Puts all keys from another container to this map, replacing the values of existing keys, if such keys are present.Constructors in com.carrotsearch.hppc with parameters of type ObjectObjectAssociativeContainer Constructor Description ObjectObjectHashMap(ObjectObjectAssociativeContainer<? extends KType,? extends VType> container)
Create a hash map from all key-value pairs of another container.ObjectObjectIdentityHashMap(ObjectObjectAssociativeContainer<? extends KType,? extends VType> container)
Create a hash map from all key-value pairs of another container.
-