public class Double2DoubleLinkedOpenCustomHashMap extends Double2DoubleOpenCustomHashMap implements Double2DoubleOrderedMap
AbstractDouble2DoubleMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Double2DoubleOrderedMap.FastOrderedSetDouble2DoubleMap.BuilderCache, Double2DoubleMap.Entry, Double2DoubleMap.FastEntrySet, Double2DoubleMap.MapBuilder| Constructor and Description |
|---|
Double2DoubleLinkedOpenCustomHashMap(double[] keys,
double[] values,
DoubleStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Double2DoubleLinkedOpenCustomHashMap(java.lang.Double[] keys,
java.lang.Double[] values,
DoubleStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Double2DoubleLinkedOpenCustomHashMap(double[] keys,
double[] values,
float loadFactor,
DoubleStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Double2DoubleLinkedOpenCustomHashMap(java.lang.Double[] keys,
java.lang.Double[] values,
float loadFactor,
DoubleStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Double2DoubleLinkedOpenCustomHashMap(Double2DoubleMap map,
DoubleStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Double2DoubleLinkedOpenCustomHashMap(Double2DoubleMap map,
float loadFactor,
DoubleStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Double2DoubleLinkedOpenCustomHashMap(DoubleStrategy strategy)
Default Constructor
|
Double2DoubleLinkedOpenCustomHashMap(int minCapacity,
DoubleStrategy strategy)
Constructor that defines the minimum capacity
|
Double2DoubleLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
DoubleStrategy strategy)
Constructor that defines the minimum capacity and load factor
|
Double2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Double> map,
DoubleStrategy strategy)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Double2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Double> map,
float loadFactor,
DoubleStrategy 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 |
|---|---|
void |
clear() |
void |
clearAndTrim(int size)
Trims the collection down to the requested size and clears all elements while doing so
|
Double2DoubleLinkedOpenCustomHashMap |
copy()
A Function that does a shallow clone of the Map itself.
|
ObjectOrderedSet<Double2DoubleMap.Entry> |
double2DoubleEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
double |
firstDoubleKey()
A method to get the first Key of a Map.
|
double |
firstDoubleValue()
A method to get the first Value of a Map.
|
void |
forEach(DoubleDoubleConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
double |
getAndMoveToFirst(double key)
A Specific get method that allows to move teh given key/value int the first index.
|
double |
getAndMoveToLast(double key)
A Specific get method that allows to move teh given key/value int the last index.
|
DoubleOrderedSet |
keySet() |
double |
lastDoubleKey()
A method to get the last Key of a Map.
|
double |
lastDoubleValue()
A method to get the last Value of a Map.
|
boolean |
moveToFirst(double key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(double key)
A specific move method to move a given key/value to the last index.
|
double |
pollFirstDoubleKey()
A method to get and remove the first Key of a Map.
|
double |
pollLastDoubleKey()
A method to get and remove the last Key of a Map.
|
double |
putAndMoveToFirst(double key,
double value)
A customized put method that allows you to insert into the first index.
|
double |
putAndMoveToLast(double 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, builder, compute, computeDouble, computeDoubleIfAbsent, computeDoubleIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, get, get, getDefaultReturnValue, getOrDefault, getOrDefault, merge, mergeAllDouble, mergeDouble, put, put, putAll, putAll, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remove, remove, remove, remove, removeOrDefault, replace, replace, replace, replace, replaceAll, replaceDoubles, replaceDoubles, setDefaultReturnValue, subFrom, supplyDoubleIfAbsentapplyAsDoubleclearAndTrim, trimpublic Double2DoubleLinkedOpenCustomHashMap(DoubleStrategy strategy)
strategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Double2DoubleLinkedOpenCustomHashMap(int minCapacity,
DoubleStrategy 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 Double2DoubleLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
DoubleStrategy 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 Double2DoubleLinkedOpenCustomHashMap(java.lang.Double[] keys,
java.lang.Double[] values,
DoubleStrategy 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 Double2DoubleLinkedOpenCustomHashMap(java.lang.Double[] keys,
java.lang.Double[] values,
float loadFactor,
DoubleStrategy 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 Double2DoubleLinkedOpenCustomHashMap(double[] keys,
double[] values,
DoubleStrategy 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 Double2DoubleLinkedOpenCustomHashMap(double[] keys,
double[] values,
float loadFactor,
DoubleStrategy 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 Double2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Double> map,
DoubleStrategy strategy)
map - the values that should be present in the mapstrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Double2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Double> map,
float loadFactor,
DoubleStrategy 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 Double2DoubleLinkedOpenCustomHashMap(Double2DoubleMap map, DoubleStrategy strategy)
map - the values that should be present in the mapstrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Double2DoubleLinkedOpenCustomHashMap(Double2DoubleMap map, float loadFactor, DoubleStrategy 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(double key,
double value)
Double2DoubleOrderedMapputAndMoveToFirst in interface Double2DoubleOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public double putAndMoveToLast(double key,
double value)
Double2DoubleOrderedMapputAndMoveToLast in interface Double2DoubleOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(double key)
Double2DoubleOrderedMapmoveToFirst in interface Double2DoubleOrderedMapkey - that should be moved to the first indexpublic boolean moveToLast(double key)
Double2DoubleOrderedMapmoveToLast in interface Double2DoubleOrderedMapkey - that should be moved to the first lastpublic double getAndMoveToFirst(double key)
Double2DoubleOrderedMapgetAndMoveToFirst in interface Double2DoubleOrderedMapkey - that is searched forpublic double getAndMoveToLast(double key)
Double2DoubleOrderedMapgetAndMoveToLast in interface Double2DoubleOrderedMapkey - that is searched forpublic Double2DoubleLinkedOpenCustomHashMap copy()
Double2DoubleMapcopy in interface Double2DoubleMapcopy in interface Double2DoubleOrderedMapcopy in class Double2DoubleOpenCustomHashMappublic double firstDoubleKey()
Double2DoubleOrderedMapfirstDoubleKey in interface Double2DoubleOrderedMappublic double pollFirstDoubleKey()
Double2DoubleOrderedMappollFirstDoubleKey in interface Double2DoubleOrderedMappublic double lastDoubleKey()
Double2DoubleOrderedMaplastDoubleKey in interface Double2DoubleOrderedMappublic double pollLastDoubleKey()
Double2DoubleOrderedMappollLastDoubleKey in interface Double2DoubleOrderedMappublic double firstDoubleValue()
Double2DoubleOrderedMapfirstDoubleValue in interface Double2DoubleOrderedMappublic double lastDoubleValue()
Double2DoubleOrderedMaplastDoubleValue in interface Double2DoubleOrderedMappublic ObjectOrderedSet<Double2DoubleMap.Entry> double2DoubleEntrySet()
Double2DoubleMapdouble2DoubleEntrySet in interface Double2DoubleMapdouble2DoubleEntrySet in interface Double2DoubleOrderedMapdouble2DoubleEntrySet in class Double2DoubleOpenCustomHashMappublic DoubleOrderedSet keySet()
keySet in interface java.util.Map<java.lang.Double,java.lang.Double>keySet in interface Double2DoubleMapkeySet in interface Double2DoubleOrderedMapkeySet in class Double2DoubleOpenCustomHashMappublic DoubleCollection values()
values in interface java.util.Map<java.lang.Double,java.lang.Double>values in interface Double2DoubleMapvalues in class Double2DoubleOpenCustomHashMappublic void forEach(DoubleDoubleConsumer action)
Double2DoubleMapforEach in interface Double2DoubleMapforEach in class Double2DoubleOpenCustomHashMapaction - processor of the values that are iterator overpublic void clear()
clear in interface java.util.Map<java.lang.Double,java.lang.Double>clear in class Double2DoubleOpenCustomHashMappublic void clearAndTrim(int size)
ITrimmableclearAndTrim in interface ITrimmableclearAndTrim in class Double2DoubleOpenCustomHashMapsize - the amount of elements that should be allowed