K - type of keys stored in the Mappublic class Object2LongHashMap<K>
extends java.lang.Object
implements java.util.Map<K,java.lang.Long>, java.io.Serializable
Map implementation specialised for long values using open addressing and
linear probing for cache efficient access. The implementation is mirror copy of Long2ObjectHashMap
and it also relies on missing value concept from Long2LongHashMap| Modifier and Type | Class and Description |
|---|---|
class |
Object2LongHashMap.EntryIterator |
class |
Object2LongHashMap.EntrySet |
class |
Object2LongHashMap.KeyIterator |
class |
Object2LongHashMap.KeySet |
class |
Object2LongHashMap.ValueCollection |
class |
Object2LongHashMap.ValueIterator |
| Constructor and Description |
|---|
Object2LongHashMap(int initialCapacity,
float loadFactor,
long missingValue)
Construct a new map allowing a configuration for initial capacity and load factor.
|
Object2LongHashMap(int initialCapacity,
float loadFactor,
long missingValue,
boolean shouldAvoidAllocation)
Construct a new map allowing a configuration for initial capacity and load factor.
|
Object2LongHashMap(long missingValue)
Construct a map with default capacity and load factor.
|
Object2LongHashMap(Object2LongHashMap<K> mapToCopy)
Copy construct a new map from an existing one.
|
| Modifier and Type | Method and Description |
|---|---|
int |
capacity()
Get the total capacity for the map to which the load factor will be a fraction of.
|
void |
clear() |
void |
compact()
Compact the
Map backing arrays by rehashing with a capacity just larger than current size
and giving consideration to the load factor. |
long |
computeIfAbsent(K key,
java.util.function.ToLongFunction<? super K> mappingFunction)
Get a value for a given key, or if it does not exist then default the value via a
LongFunction and put it in the map. |
boolean |
containsKey(java.lang.Object key)
Overloaded version of
Map.containsKey(Object) that takes a primitive long key. |
boolean |
containsValue(long value) |
boolean |
containsValue(java.lang.Object value) |
Object2LongHashMap.EntrySet |
entrySet() |
boolean |
equals(java.lang.Object o) |
java.lang.Long |
get(java.lang.Object key) |
long |
getValue(K key)
Overloaded version of
Map.get(Object) that takes a primitive long key. |
int |
hashCode() |
boolean |
isEmpty() |
Object2LongHashMap.KeySet |
keySet() |
float |
loadFactor()
Get the load factor beyond which the map will increase size.
|
long |
missingValue()
The value to be used as a null marker in the map.
|
long |
put(K key,
long value)
Overloaded version of
Map.put(Object, Object) that takes a primitive long key. |
java.lang.Long |
put(K key,
java.lang.Long value) |
void |
putAll(java.util.Map<? extends K,? extends java.lang.Long> map) |
java.lang.Long |
remove(java.lang.Object key) |
long |
removeKey(K key)
Overloaded version of
Map.remove(Object) that takes a primitive long key. |
long |
replace(K key,
long value)
Primitive specialised version of
Map.replace(Object, Object) |
boolean |
replace(K key,
long oldValue,
long newValue)
Primitive specialised version of
Map.replace(Object, Object, Object) |
int |
resizeThreshold()
Get the actual threshold which when reached the map will resize.
|
int |
size() |
java.lang.String |
toString() |
Object2LongHashMap.ValueCollection |
values() |
public Object2LongHashMap(long missingValue)
missingValue - value to be used as a null maker in the mappublic Object2LongHashMap(int initialCapacity,
float loadFactor,
long missingValue)
initialCapacity - for the backing arrayloadFactor - limit for resizing on putsmissingValue - value to be used as a null marker in the mappublic Object2LongHashMap(int initialCapacity,
float loadFactor,
long missingValue,
boolean shouldAvoidAllocation)
initialCapacity - for the backing arrayloadFactor - limit for resizing on putsmissingValue - value to be used as a null marker in the mapshouldAvoidAllocation - should allocation be avoided by caching iterators and map entries.public Object2LongHashMap(Object2LongHashMap<K> mapToCopy)
mapToCopy - for construction.public long missingValue()
public float loadFactor()
public int capacity()
public int resizeThreshold()
public int size()
size in interface java.util.Map<K,java.lang.Long>public boolean isEmpty()
isEmpty in interface java.util.Map<K,java.lang.Long>public boolean containsKey(java.lang.Object key)
Map.containsKey(Object) that takes a primitive long key.containsKey in interface java.util.Map<K,java.lang.Long>key - for indexing the Mappublic boolean containsValue(java.lang.Object value)
containsValue in interface java.util.Map<K,java.lang.Long>public boolean containsValue(long value)
public java.lang.Long get(java.lang.Object key)
get in interface java.util.Map<K,java.lang.Long>public long getValue(K key)
Map.get(Object) that takes a primitive long key.
Due to type erasure have to rename the methodkey - for indexing the Mappublic long computeIfAbsent(K key, java.util.function.ToLongFunction<? super K> mappingFunction)
LongFunction and put it in the map.
Primitive specialized version of Map.computeIfAbsent(K, java.util.function.Function<? super K, ? extends V>).
key - to search on.mappingFunction - to provide a value if the get returns missingValue.public java.lang.Long put(K key, java.lang.Long value)
put in interface java.util.Map<K,java.lang.Long>public long put(K key, long value)
Map.put(Object, Object) that takes a primitive long key.key - for indexing the Mapvalue - to be inserted in the Mappublic java.lang.Long remove(java.lang.Object key)
remove in interface java.util.Map<K,java.lang.Long>public long removeKey(K key)
Map.remove(Object) that takes a primitive long key.
Due to type erasure have to rename the methodkey - for indexing the Mappublic void clear()
clear in interface java.util.Map<K,java.lang.Long>public void compact()
Map backing arrays by rehashing with a capacity just larger than current size
and giving consideration to the load factor.public void putAll(java.util.Map<? extends K,? extends java.lang.Long> map)
putAll in interface java.util.Map<K,java.lang.Long>public Object2LongHashMap.KeySet keySet()
keySet in interface java.util.Map<K,java.lang.Long>public Object2LongHashMap.ValueCollection values()
values in interface java.util.Map<K,java.lang.Long>public Object2LongHashMap.EntrySet entrySet()
entrySet in interface java.util.Map<K,java.lang.Long>public java.lang.String toString()
toString in class java.lang.Objectpublic boolean equals(java.lang.Object o)
equals in interface java.util.Map<K,java.lang.Long>equals in class java.lang.Objectpublic int hashCode()
hashCode in interface java.util.Map<K,java.lang.Long>hashCode in class java.lang.Objectpublic long replace(K key, long value)
Map.replace(Object, Object)key - key with which the specified value is associatedvalue - value to be associated with the specified keynull if there was no mapping for the key.public boolean replace(K key, long oldValue, long newValue)
Map.replace(Object, Object, Object)key - key with which the specified value is associatedoldValue - value expected to be associated with the specified keynewValue - value to be associated with the specified keytrue if the value was replacedCopyright © 2014-2019 Real Logic Ltd. All Rights Reserved.