public class Byte2DoubleLinkedOpenCustomHashMap extends Byte2DoubleOpenCustomHashMap implements Byte2DoubleOrderedMap
AbstractByte2DoubleMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Byte2DoubleOrderedMap.FastOrderedSetByte2DoubleMap.BuilderCache, Byte2DoubleMap.Entry, Byte2DoubleMap.FastEntrySet, Byte2DoubleMap.MapBuilder| Constructor and Description |
|---|
Byte2DoubleLinkedOpenCustomHashMap(byte[] keys,
double[] values,
ByteStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Byte2DoubleLinkedOpenCustomHashMap(java.lang.Byte[] keys,
java.lang.Double[] values,
ByteStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Byte2DoubleLinkedOpenCustomHashMap(byte[] keys,
double[] values,
float loadFactor,
ByteStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Byte2DoubleLinkedOpenCustomHashMap(java.lang.Byte[] keys,
java.lang.Double[] values,
float loadFactor,
ByteStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Byte2DoubleLinkedOpenCustomHashMap(Byte2DoubleMap map,
ByteStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Byte2DoubleLinkedOpenCustomHashMap(Byte2DoubleMap map,
float loadFactor,
ByteStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Byte2DoubleLinkedOpenCustomHashMap(ByteStrategy strategy)
Default Constructor
|
Byte2DoubleLinkedOpenCustomHashMap(int minCapacity,
ByteStrategy strategy)
Constructor that defines the minimum capacity
|
Byte2DoubleLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
ByteStrategy strategy)
Constructor that defines the minimum capacity and load factor
|
Byte2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Byte,? extends java.lang.Double> map,
ByteStrategy strategy)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Byte2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Byte,? extends java.lang.Double> map,
float loadFactor,
ByteStrategy strategy)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectOrderedSet<Byte2DoubleMap.Entry> |
byte2DoubleEntrySet()
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
|
Byte2DoubleLinkedOpenCustomHashMap |
copy()
A Function that does a shallow clone of the Map itself.
|
byte |
firstByteKey()
A method to get the first Key of a Map.
|
double |
firstDoubleValue()
A method to get the first Value of a Map.
|
void |
forEach(ByteDoubleConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
double |
getAndMoveToFirst(byte key)
A Specific get method that allows to move teh given key/value int the first index.
|
double |
getAndMoveToLast(byte key)
A Specific get method that allows to move teh given key/value int the last index.
|
ByteOrderedSet |
keySet() |
byte |
lastByteKey()
A method to get the last Key of a Map.
|
double |
lastDoubleValue()
A method to get the last Value of a Map.
|
boolean |
moveToFirst(byte key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(byte key)
A specific move method to move a given key/value to the last index.
|
byte |
pollFirstByteKey()
A method to get and remove the first Key of a Map.
|
byte |
pollLastByteKey()
A method to get and remove the last Key of a Map.
|
double |
putAndMoveToFirst(byte key,
double value)
A customized put method that allows you to insert into the first index.
|
double |
putAndMoveToLast(byte key,
double value)
A customized put method that allows you to insert into the last index.
|
DoubleCollection |
values() |
addTo, computeDouble, computeDoubleIfAbsent, computeDoubleIfPresent, containsKey, containsKey, containsValue, containsValue, get, get, getOrDefault, mergeAllDouble, mergeDouble, put, putIfAbsent, remove, remove, remove, remove, removeOrDefault, replace, replace, size, subFrom, supplyDoubleIfAbsent, trimaddToAll, entrySet, equals, getDefaultReturnValue, getOrDefault, hashCode, put, putAll, putAll, putAll, putAll, putAllIfAbsent, replaceDoubles, replaceDoubles, setDefaultReturnValuesynchronize, synchronize, unmodifiableaddTo, addToAll, applyAsDouble, builder, compute, computeDouble, computeDoubleIfAbsent, computeDoubleIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, get, get, getDefaultReturnValue, getOrDefault, getOrDefault, merge, mergeAllDouble, mergeDouble, put, put, put, put, putAll, putAll, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remove, remove, remove, remove, removeOrDefault, replace, replace, replace, replace, replaceAll, replaceDoubles, replaceDoubles, setDefaultReturnValue, subFrom, supplyDoubleIfAbsentclearAndTrim, trimpublic Byte2DoubleLinkedOpenCustomHashMap(ByteStrategy strategy)
strategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Byte2DoubleLinkedOpenCustomHashMap(int minCapacity,
ByteStrategy strategy)
minCapacity - the minimum capacity the HashMap is allowed to be.strategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nulljava.lang.IllegalStateException - if the minimum capacity is negativepublic Byte2DoubleLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
ByteStrategy strategy)
minCapacity - the minimum capacity the HashMap is allowed to be.loadFactor - the percentage of how full the backing array can be before they resizestrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nulljava.lang.IllegalStateException - if the minimum capacity is negativejava.lang.IllegalStateException - if the loadfactor is either below/equal to 0 or above/equal to 1public Byte2DoubleLinkedOpenCustomHashMap(java.lang.Byte[] keys,
java.lang.Double[] values,
ByteStrategy strategy)
keys - the keys that should be put into the mapvalues - the values that should be put into the map.strategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nulljava.lang.IllegalStateException - if the keys and values do not match in lenghtpublic Byte2DoubleLinkedOpenCustomHashMap(java.lang.Byte[] keys,
java.lang.Double[] values,
float loadFactor,
ByteStrategy strategy)
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 resizestrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nulljava.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 Byte2DoubleLinkedOpenCustomHashMap(byte[] keys,
double[] values,
ByteStrategy strategy)
keys - the keys that should be put into the mapvalues - the values that should be put into the map.strategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nulljava.lang.IllegalStateException - if the keys and values do not match in lenghtpublic Byte2DoubleLinkedOpenCustomHashMap(byte[] keys,
double[] values,
float loadFactor,
ByteStrategy strategy)
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 resizestrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nulljava.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 Byte2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Byte,? extends java.lang.Double> map,
ByteStrategy strategy)
map - the values that should be present in the mapstrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Byte2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Byte,? extends java.lang.Double> map,
float loadFactor,
ByteStrategy strategy)
map - the values that should be present in the maploadFactor - the percentage of how full the backing array can be before they resizestrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nulljava.lang.IllegalStateException - if the loadfactor is either below/equal to 0 or above/equal to 1public Byte2DoubleLinkedOpenCustomHashMap(Byte2DoubleMap map, ByteStrategy strategy)
map - the values that should be present in the mapstrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Byte2DoubleLinkedOpenCustomHashMap(Byte2DoubleMap map, float loadFactor, ByteStrategy strategy)
map - the values that should be present in the maploadFactor - the percentage of how full the backing array can be before they resizestrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nulljava.lang.IllegalStateException - if the loadfactor is either below/equal to 0 or above/equal to 1public double putAndMoveToFirst(byte key,
double value)
Byte2DoubleOrderedMapputAndMoveToFirst in interface Byte2DoubleOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public double putAndMoveToLast(byte key,
double value)
Byte2DoubleOrderedMapputAndMoveToLast in interface Byte2DoubleOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(byte key)
Byte2DoubleOrderedMapmoveToFirst in interface Byte2DoubleOrderedMapkey - that should be moved to the first indexpublic boolean moveToLast(byte key)
Byte2DoubleOrderedMapmoveToLast in interface Byte2DoubleOrderedMapkey - that should be moved to the first lastpublic double getAndMoveToFirst(byte key)
Byte2DoubleOrderedMapgetAndMoveToFirst in interface Byte2DoubleOrderedMapkey - that is searched forpublic double getAndMoveToLast(byte key)
Byte2DoubleOrderedMapgetAndMoveToLast in interface Byte2DoubleOrderedMapkey - that is searched forpublic Byte2DoubleLinkedOpenCustomHashMap copy()
Byte2DoubleMapcopy in interface Byte2DoubleMapcopy in interface Byte2DoubleOrderedMapcopy in class Byte2DoubleOpenCustomHashMappublic byte firstByteKey()
Byte2DoubleOrderedMapfirstByteKey in interface Byte2DoubleOrderedMappublic byte pollFirstByteKey()
Byte2DoubleOrderedMappollFirstByteKey in interface Byte2DoubleOrderedMappublic byte lastByteKey()
Byte2DoubleOrderedMaplastByteKey in interface Byte2DoubleOrderedMappublic byte pollLastByteKey()
Byte2DoubleOrderedMappollLastByteKey in interface Byte2DoubleOrderedMappublic double firstDoubleValue()
Byte2DoubleOrderedMapfirstDoubleValue in interface Byte2DoubleOrderedMappublic double lastDoubleValue()
Byte2DoubleOrderedMaplastDoubleValue in interface Byte2DoubleOrderedMappublic ObjectOrderedSet<Byte2DoubleMap.Entry> byte2DoubleEntrySet()
Byte2DoubleMapbyte2DoubleEntrySet in interface Byte2DoubleMapbyte2DoubleEntrySet in interface Byte2DoubleOrderedMapbyte2DoubleEntrySet in class Byte2DoubleOpenCustomHashMappublic ByteOrderedSet keySet()
keySet in interface java.util.Map<java.lang.Byte,java.lang.Double>keySet in interface Byte2DoubleMapkeySet in interface Byte2DoubleOrderedMapkeySet in class Byte2DoubleOpenCustomHashMappublic DoubleCollection values()
values in interface java.util.Map<java.lang.Byte,java.lang.Double>values in interface Byte2DoubleMapvalues in class Byte2DoubleOpenCustomHashMappublic void forEach(ByteDoubleConsumer action)
Byte2DoubleMapforEach in interface Byte2DoubleMapforEach in class Byte2DoubleOpenCustomHashMapaction - processor of the values that are iterator overpublic void clear()
clear in interface java.util.Map<java.lang.Byte,java.lang.Double>clear in class Byte2DoubleOpenCustomHashMappublic void clearAndTrim(int size)
ITrimmableclearAndTrim in interface ITrimmableclearAndTrim in class Byte2DoubleOpenCustomHashMapsize - the amount of elements that should be allowed