public class Byte2LongOpenHashMap extends AbstractByte2LongMap implements ITrimmable
AbstractByte2LongMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Byte2LongMap.BuilderCache, Byte2LongMap.Entry, Byte2LongMap.FastEntrySet, Byte2LongMap.MapBuilder| Constructor and Description |
|---|
Byte2LongOpenHashMap()
Default Constructor
|
Byte2LongOpenHashMap(byte[] keys,
long[] values)
Helper constructor that allow to create a map from unboxed values
|
Byte2LongOpenHashMap(java.lang.Byte[] keys,
java.lang.Long[] values)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Byte2LongOpenHashMap(byte[] keys,
long[] values,
float loadFactor)
Helper constructor that allow to create a map from unboxed values
|
Byte2LongOpenHashMap(java.lang.Byte[] keys,
java.lang.Long[] values,
float loadFactor)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Byte2LongOpenHashMap(Byte2LongMap map)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Byte2LongOpenHashMap(Byte2LongMap map,
float loadFactor)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Byte2LongOpenHashMap(int minCapacity)
Constructor that defines the minimum capacity
|
Byte2LongOpenHashMap(int minCapacity,
float loadFactor)
Constructor that defines the minimum capacity and load factor
|
Byte2LongOpenHashMap(java.util.Map<? extends java.lang.Byte,? extends java.lang.Long> map)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Byte2LongOpenHashMap(java.util.Map<? extends java.lang.Byte,? extends java.lang.Long> map,
float loadFactor)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
| Modifier and Type | Method and Description |
|---|---|
long |
addTo(byte key,
long value)
A Helper method to add a primitives together.
|
ObjectSet<Byte2LongMap.Entry> |
byte2LongEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
void |
clear() |
void |
clearAndTrim(int size)
Trims the collection down to the requested size and clears all elements while doing so
|
long |
computeLong(byte key,
ByteLongUnaryOperator mappingFunction)
A Type Specific compute method to reduce boxing/unboxing
|
long |
computeLongIfAbsent(byte key,
Byte2LongFunction mappingFunction)
A Type Specific compute method to reduce boxing/unboxing
|
long |
computeLongIfPresent(byte key,
ByteLongUnaryOperator mappingFunction)
A Type Specific compute method to reduce boxing/unboxing
|
boolean |
containsKey(byte key)
Type Specific method to reduce boxing/unboxing of values
|
boolean |
containsKey(java.lang.Object key)
Deprecated.
|
boolean |
containsValue(long value)
Type Specific method to reduce boxing/unboxing of values
|
boolean |
containsValue(java.lang.Object value)
Deprecated.
|
Byte2LongOpenHashMap |
copy()
A Function that does a shallow clone of the Map itself.
|
void |
forEach(ByteLongConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
long |
get(byte key)
A Type Specific get method to reduce boxing/unboxing
|
java.lang.Long |
get(java.lang.Object key) |
long |
getOrDefault(byte key,
long defaultValue)
A Type Specific getOrDefault method to reduce boxing/unboxing
|
ByteSet |
keySet() |
void |
mergeAllLong(Byte2LongMap m,
LongLongUnaryOperator mappingFunction)
A Bulk method for merging Maps.
|
long |
mergeLong(byte key,
long value,
LongLongUnaryOperator mappingFunction)
A Type Specific merge method to reduce boxing/unboxing
|
long |
put(byte key,
long value)
Type Specific method to reduce boxing/unboxing of values
|
long |
putIfAbsent(byte key,
long value)
Type Specific method to reduce boxing/unboxing of values
|
long |
remove(byte key)
Type Specific remove function to reduce boxing/unboxing
|
boolean |
remove(byte key,
long value)
Type Specific remove function to reduce boxing/unboxing
|
java.lang.Long |
remove(java.lang.Object key) |
boolean |
remove(java.lang.Object key,
java.lang.Object value) |
long |
removeOrDefault(byte key,
long defaultValue)
Type-Specific Remove function with a default return value if wanted.
|
long |
replace(byte key,
long value)
A Type Specific replace method to reduce boxing/unboxing replace an existing value
|
boolean |
replace(byte key,
long oldValue,
long newValue)
A Type Specific replace method to replace an existing value
|
int |
size() |
long |
subFrom(byte key,
long value)
A Helper method to subtract from primitive from each other.
|
long |
supplyLongIfAbsent(byte key,
LongSupplier valueProvider)
A Supplier based computeIfAbsent function to fill the most used usecase of this function
|
boolean |
trim(int size)
Trims the original collection down to the size of the current elements or the requested size depending which is bigger
|
LongCollection |
values() |
addToAll, entrySet, equals, getDefaultReturnValue, getOrDefault, hashCode, put, putAll, putAll, putAll, putAll, putAllIfAbsent, replaceLongs, replaceLongs, setDefaultReturnValueclearAndTrim, trimapplyAsLong, builder, compute, computeIfAbsent, computeIfPresent, forEach, merge, put, put, putAll, putAll, putIfAbsent, replace, replace, replaceAll, synchronize, synchronize, unmodifiablepublic Byte2LongOpenHashMap()
public Byte2LongOpenHashMap(int minCapacity)
minCapacity - the minimum capacity the HashMap is allowed to be.java.lang.IllegalStateException - if the minimum capacity is negativepublic Byte2LongOpenHashMap(int minCapacity,
float loadFactor)
minCapacity - the minimum capacity the HashMap is allowed to be.loadFactor - the percentage of how full the backing array can be before they resizejava.lang.IllegalStateException - if the minimum capacity is negativejava.lang.IllegalStateException - if the loadfactor is either below/equal to 0 or above/equal to 1public Byte2LongOpenHashMap(java.lang.Byte[] keys,
java.lang.Long[] values)
keys - the keys that should be put into the mapvalues - the values that should be put into the map.java.lang.IllegalStateException - if the keys and values do not match in lenghtpublic Byte2LongOpenHashMap(java.lang.Byte[] keys,
java.lang.Long[] values,
float loadFactor)
keys - the keys that should be put into the mapvalues - the values that should be put into the map.loadFactor - the percentage of how full the backing array can be before they resizejava.lang.IllegalStateException - if the keys and values do not match in lenghtjava.lang.IllegalStateException - if the loadfactor is either below/equal to 0 or above/equal to 1public Byte2LongOpenHashMap(byte[] keys,
long[] values)
keys - the keys that should be put into the mapvalues - the values that should be put into the map.java.lang.IllegalStateException - if the keys and values do not match in lenghtpublic Byte2LongOpenHashMap(byte[] keys,
long[] values,
float loadFactor)
keys - the keys that should be put into the mapvalues - the values that should be put into the map.loadFactor - the percentage of how full the backing array can be before they resizejava.lang.IllegalStateException - if the keys and values do not match in lenghtjava.lang.IllegalStateException - if the loadfactor is either below/equal to 0 or above/equal to 1public Byte2LongOpenHashMap(java.util.Map<? extends java.lang.Byte,? extends java.lang.Long> map)
map - the values that should be present in the mappublic Byte2LongOpenHashMap(java.util.Map<? extends java.lang.Byte,? extends java.lang.Long> map,
float loadFactor)
map - the values that should be present in the maploadFactor - the percentage of how full the backing array can be before they resizejava.lang.IllegalStateException - if the loadfactor is either below/equal to 0 or above/equal to 1public Byte2LongOpenHashMap(Byte2LongMap map)
map - the values that should be present in the mappublic Byte2LongOpenHashMap(Byte2LongMap map, float loadFactor)
map - the values that should be present in the maploadFactor - the percentage of how full the backing array can be before they resizejava.lang.IllegalStateException - if the loadfactor is either below/equal to 0 or above/equal to 1public long put(byte key,
long value)
Byte2LongMapput in interface Byte2LongMapkey - the key that should be inserted,value - the value that should be insertedMap.put(Object, Object)public long putIfAbsent(byte key,
long value)
Byte2LongMapputIfAbsent in interface Byte2LongMapkey - the key that should be inserted,value - the value that should be insertedMap.putIfAbsent(Object, Object)public long addTo(byte key,
long value)
Byte2LongMapaddTo in interface Byte2LongMapkey - the key that should be inserted,value - the value that should be inserted / addedpublic long subFrom(byte key,
long value)
Byte2LongMapByte2LongMap.getDefaultReturnValue()
If the fence is reached the element will be automaticall removedsubFrom in interface Byte2LongMapkey - that should be subtract fromvalue - that should be subtractpublic boolean containsKey(byte key)
Byte2LongMapcontainsKey in interface Byte2LongMapcontainsKey in class AbstractByte2LongMapkey - element that is searched for@Deprecated public boolean containsKey(java.lang.Object key)
containsKey in interface java.util.Map<java.lang.Byte,java.lang.Long>containsKey in interface Byte2LongMapcontainsKey in class java.util.AbstractMap<java.lang.Byte,java.lang.Long>key - that is searched for.Map.containsKey(Object)public boolean containsValue(long value)
Byte2LongMapcontainsValue in interface Byte2LongMapcontainsValue in class AbstractByte2LongMapvalue - element that is searched for@Deprecated public boolean containsValue(java.lang.Object value)
containsValue in interface java.util.Map<java.lang.Byte,java.lang.Long>containsValue in interface Byte2LongMapcontainsValue in class java.util.AbstractMap<java.lang.Byte,java.lang.Long>value - that is searched for.Map.containsValue(Object)public long remove(byte key)
Byte2LongMapremove in interface Byte2LongMapkey - the element that should be removedpublic long removeOrDefault(byte key,
long defaultValue)
Byte2LongMapremoveOrDefault in interface Byte2LongMapkey - the element that should be removeddefaultValue - the value that should be returned if the entry doesn't existMap.remove(Object, Object)public java.lang.Long remove(java.lang.Object key)
remove in interface java.util.Map<java.lang.Byte,java.lang.Long>remove in interface Byte2LongMapremove in class AbstractByte2LongMapkey - the element that should be removedMap.remove(Object)public boolean remove(byte key,
long value)
Byte2LongMapremove in interface Byte2LongMapkey - the element that should be removedvalue - the expected value that should be foundMap.remove(Object, Object)public boolean remove(java.lang.Object key,
java.lang.Object value)
remove in interface java.util.Map<java.lang.Byte,java.lang.Long>remove in interface Byte2LongMapkey - the element that should be removedvalue - the expected value that should be foundMap.remove(Object, Object)public long get(byte key)
Byte2LongMapget in interface Byte2LongMapkey - the key that is searched forpublic java.lang.Long get(java.lang.Object key)
get in interface java.util.Map<java.lang.Byte,java.lang.Long>get in interface Byte2LongMapget in class AbstractByte2LongMappublic long getOrDefault(byte key,
long defaultValue)
Byte2LongMapgetOrDefault in interface Byte2LongMapgetOrDefault in class AbstractByte2LongMapkey - the key that is searched fordefaultValue - the value that should be returned if the key is not presentpublic Byte2LongOpenHashMap copy()
Byte2LongMapcopy in interface Byte2LongMapcopy in class AbstractByte2LongMappublic ObjectSet<Byte2LongMap.Entry> byte2LongEntrySet()
Byte2LongMapbyte2LongEntrySet in interface Byte2LongMappublic ByteSet keySet()
keySet in interface java.util.Map<java.lang.Byte,java.lang.Long>keySet in interface Byte2LongMapkeySet in class AbstractByte2LongMappublic LongCollection values()
values in interface java.util.Map<java.lang.Byte,java.lang.Long>values in interface Byte2LongMapvalues in class AbstractByte2LongMappublic void forEach(ByteLongConsumer action)
Byte2LongMapforEach in interface Byte2LongMapforEach in class AbstractByte2LongMapaction - processor of the values that are iterator overpublic boolean replace(byte key,
long oldValue,
long newValue)
Byte2LongMapreplace in interface Byte2LongMapreplace in class AbstractByte2LongMapkey - the element that should be searched foroldValue - the expected value to be replacednewValue - the value to replace the oldValue with.public long replace(byte key,
long value)
Byte2LongMapreplace in interface Byte2LongMapreplace in class AbstractByte2LongMapkey - the element that should be searched forvalue - the value to replace with.public long computeLong(byte key,
ByteLongUnaryOperator mappingFunction)
Byte2LongMapcomputeLong in interface Byte2LongMapcomputeLong in class AbstractByte2LongMapkey - the key that should be computedmappingFunction - the operator that should generate the valuepublic long computeLongIfAbsent(byte key,
Byte2LongFunction mappingFunction)
Byte2LongMapcomputeLongIfAbsent in interface Byte2LongMapcomputeLongIfAbsent in class AbstractByte2LongMapkey - the key that should be computedmappingFunction - the operator that should generate the value if not presentpublic long supplyLongIfAbsent(byte key,
LongSupplier valueProvider)
Byte2LongMapsupplyLongIfAbsent in interface Byte2LongMapsupplyLongIfAbsent in class AbstractByte2LongMapkey - the key that should be computedvalueProvider - the value if not presentpublic long computeLongIfPresent(byte key,
ByteLongUnaryOperator mappingFunction)
Byte2LongMapcomputeLongIfPresent in interface Byte2LongMapcomputeLongIfPresent in class AbstractByte2LongMapkey - the key that should be computedmappingFunction - the operator that should generate the value if presentpublic long mergeLong(byte key,
long value,
LongLongUnaryOperator mappingFunction)
Byte2LongMapmergeLong in interface Byte2LongMapmergeLong in class AbstractByte2LongMapkey - the key that should be be searched forvalue - the value that should be merged withmappingFunction - the operator that should generate the new Valuepublic void mergeAllLong(Byte2LongMap m, LongLongUnaryOperator mappingFunction)
Byte2LongMapmergeAllLong in interface Byte2LongMapmergeAllLong in class AbstractByte2LongMapm - the entries that should be bulk addedmappingFunction - the operator that should generate the new Valuepublic int size()
size in interface java.util.Map<java.lang.Byte,java.lang.Long>size in class java.util.AbstractMap<java.lang.Byte,java.lang.Long>public void clear()
clear in interface java.util.Map<java.lang.Byte,java.lang.Long>clear in class java.util.AbstractMap<java.lang.Byte,java.lang.Long>public boolean trim(int size)
ITrimmabletrim in interface ITrimmablesize - the requested trim size.public void clearAndTrim(int size)
ITrimmableclearAndTrim in interface ITrimmablesize - the amount of elements that should be allowed