V - type of values stored in the Mappublic class Int2NullableObjectHashMap<V> extends Int2ObjectHashMap<V>
Int2ObjectHashMap that allows null values.Int2ObjectHashMap.EntryIterator, Int2ObjectHashMap.EntrySet, Int2ObjectHashMap.KeyIterator, Int2ObjectHashMap.KeySet, Int2ObjectHashMap.ValueCollection, Int2ObjectHashMap.ValueIterator| Constructor and Description |
|---|
Int2NullableObjectHashMap()
Constructs map with default settings.
|
Int2NullableObjectHashMap(Int2ObjectHashMap<V> mapToCopy)
Copy construct a new map from an existing one.
|
Int2NullableObjectHashMap(int initialCapacity,
float loadFactor)
Constructs map with given initial capacity and load factory and enables caching of iterators.
|
Int2NullableObjectHashMap(int initialCapacity,
float loadFactor,
boolean shouldAvoidAllocation)
Construct a new map allowing a configuration for initial capacity and load factor.
|
| Modifier and Type | Method and Description |
|---|---|
protected Object |
mapNullValue(Object value)
Interceptor for masking null values.
|
protected V |
unmapNullValue(Object value)
Interceptor for unmasking null values.
|
capacity, clear, compact, computeIfAbsent, containsKey, containsKey, containsValue, entrySet, equals, get, get, getMapped, hashCode, isEmpty, keySet, loadFactor, put, put, putAll, remove, remove, replace, replace, resizeThreshold, size, toString, valuesclone, finalize, getClass, notify, notifyAll, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAllpublic Int2NullableObjectHashMap()
public Int2NullableObjectHashMap(int initialCapacity,
float loadFactor)
initialCapacity - for the backing array.loadFactor - limit for resizing on puts.public Int2NullableObjectHashMap(int initialCapacity,
float loadFactor,
boolean shouldAvoidAllocation)
initialCapacity - for the backing arrayloadFactor - limit for resizing on putsshouldAvoidAllocation - should allocation be avoided by caching iterators and map entries.public Int2NullableObjectHashMap(Int2ObjectHashMap<V> mapToCopy)
mapToCopy - for construction.protected Object mapNullValue(Object value)
Int2ObjectHashMapmapNullValue in class Int2ObjectHashMap<V>value - value to mask.protected V unmapNullValue(Object value)
Int2ObjectHashMapunmapNullValue in class Int2ObjectHashMap<V>value - value to unmask.Copyright © 2014-2021 Real Logic Limited. All Rights Reserved.