public class Double2FloatLinkedOpenCustomHashMap extends Double2FloatOpenCustomHashMap implements Double2FloatSortedMap
AbstractDouble2FloatMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Double2FloatSortedMap.FastSortedSetDouble2FloatMap.Entry, Double2FloatMap.FastEntrySet| Constructor and Description |
|---|
Double2FloatLinkedOpenCustomHashMap(double[] keys,
float[] values,
DoubleStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Double2FloatLinkedOpenCustomHashMap(java.lang.Double[] keys,
java.lang.Float[] values,
DoubleStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Double2FloatLinkedOpenCustomHashMap(double[] keys,
float[] values,
float loadFactor,
DoubleStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Double2FloatLinkedOpenCustomHashMap(java.lang.Double[] keys,
java.lang.Float[] values,
float loadFactor,
DoubleStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Double2FloatLinkedOpenCustomHashMap(Double2FloatMap map,
DoubleStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Double2FloatLinkedOpenCustomHashMap(Double2FloatMap 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.
|
Double2FloatLinkedOpenCustomHashMap(DoubleStrategy strategy)
Default Constructor
|
Double2FloatLinkedOpenCustomHashMap(int minCapacity,
DoubleStrategy strategy)
Constructor that defines the minimum capacity
|
Double2FloatLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
DoubleStrategy strategy)
Constructor that defines the minimum capacity and load factor
|
Double2FloatLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Float> map,
DoubleStrategy strategy)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Double2FloatLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Float> 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() |
DoubleComparator |
comparator() |
ObjectSet<Double2FloatMap.Entry> |
double2FloatEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
double |
firstDoubleKey()
A method to get the first Key of a Map.
|
float |
firstFloatValue()
A method to get the first Value of a Map.
|
void |
forEach(DoubleFloatConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
float |
getAndMoveToFirst(double key)
A Specific get method that allows to move teh given key/value int the first index.
|
float |
getAndMoveToLast(double key)
A Specific get method that allows to move teh given key/value int the last index.
|
Double2FloatSortedMap |
headMap(double toKey)
A Type Specific HeadMap method to reduce boxing/unboxing
|
DoubleSet |
keySet() |
double |
lastDoubleKey()
A method to get the last Key of a Map.
|
float |
lastFloatValue()
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.
|
float |
putAndMoveToFirst(double key,
float value)
A customized put method that allows you to insert into the first index.
|
float |
putAndMoveToLast(double key,
float value)
A customized put method that allows you to insert into the last index.
|
Double2FloatSortedMap |
subMap(double fromKey,
double toKey)
A Type Specific SubMap method to reduce boxing/unboxing
|
Double2FloatSortedMap |
tailMap(double fromKey)
A Type Specific TailMap method to reduce boxing/unboxing
|
FloatCollection |
values() |
addTo, computeFloat, computeFloatIfAbsent, computeFloatIfPresent, containsKey, containsKey, containsValue, containsValue, get, getFloat, getOrDefault, mergeAllFloat, mergeFloat, put, putIfAbsent, remDouble, remDoubleOrDefault, remove, remove, remove, replace, replace, sizeaddToAll, entrySet, equals, getDefaultReturnValue, getOrDefault, hashCode, putAll, putAll, putAll, putAllIfAbsent, replaceFloats, replaceFloats, setDefaultReturnValuefirstKey, headMap, lastKey, subMap, tailMapaddTo, addToAll, compute, computeFloat, computeFloatIfAbsent, computeFloatIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, get, getDefaultReturnValue, getFloat, getOrDefault, getOrDefault, merge, mergeAllFloat, mergeFloat, put, put, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remDouble, remDoubleOrDefault, remove, remove, remove, replace, replace, replace, replace, replaceAll, replaceFloats, replaceFloats, setDefaultReturnValuepublic Double2FloatLinkedOpenCustomHashMap(DoubleStrategy strategy)
strategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Double2FloatLinkedOpenCustomHashMap(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 Double2FloatLinkedOpenCustomHashMap(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 Double2FloatLinkedOpenCustomHashMap(java.lang.Double[] keys,
java.lang.Float[] 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 Double2FloatLinkedOpenCustomHashMap(java.lang.Double[] keys,
java.lang.Float[] 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 Double2FloatLinkedOpenCustomHashMap(double[] keys,
float[] 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 Double2FloatLinkedOpenCustomHashMap(double[] keys,
float[] 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 Double2FloatLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Float> 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 Double2FloatLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Float> 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 Double2FloatLinkedOpenCustomHashMap(Double2FloatMap 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 Double2FloatLinkedOpenCustomHashMap(Double2FloatMap 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 float putAndMoveToFirst(double key,
float value)
Double2FloatSortedMapputAndMoveToFirst in interface Double2FloatSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public float putAndMoveToLast(double key,
float value)
Double2FloatSortedMapputAndMoveToLast in interface Double2FloatSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(double key)
Double2FloatSortedMapmoveToFirst in interface Double2FloatSortedMapkey - that should be moved to the first indexpublic boolean moveToLast(double key)
Double2FloatSortedMapmoveToLast in interface Double2FloatSortedMapkey - that should be moved to the first lastpublic float getAndMoveToFirst(double key)
Double2FloatSortedMapgetAndMoveToFirst in interface Double2FloatSortedMapkey - that is searched forpublic float getAndMoveToLast(double key)
Double2FloatSortedMapgetAndMoveToLast in interface Double2FloatSortedMapkey - that is searched forpublic DoubleComparator comparator()
comparator in interface java.util.SortedMap<java.lang.Double,java.lang.Float>comparator in interface Double2FloatSortedMappublic Double2FloatSortedMap subMap(double fromKey, double toKey)
Double2FloatSortedMapsubMap in interface Double2FloatSortedMapfromKey - where the submap should starttoKey - where the subMap should endpublic Double2FloatSortedMap headMap(double toKey)
Double2FloatSortedMapheadMap in interface Double2FloatSortedMaptoKey - where the headMap should endpublic Double2FloatSortedMap tailMap(double fromKey)
Double2FloatSortedMaptailMap in interface Double2FloatSortedMapfromKey - where the TailMap should startpublic double firstDoubleKey()
Double2FloatSortedMapfirstDoubleKey in interface Double2FloatSortedMappublic double pollFirstDoubleKey()
Double2FloatSortedMappollFirstDoubleKey in interface Double2FloatSortedMappublic double lastDoubleKey()
Double2FloatSortedMaplastDoubleKey in interface Double2FloatSortedMappublic double pollLastDoubleKey()
Double2FloatSortedMappollLastDoubleKey in interface Double2FloatSortedMappublic float firstFloatValue()
Double2FloatSortedMapfirstFloatValue in interface Double2FloatSortedMappublic float lastFloatValue()
Double2FloatSortedMaplastFloatValue in interface Double2FloatSortedMappublic ObjectSet<Double2FloatMap.Entry> double2FloatEntrySet()
Double2FloatMapdouble2FloatEntrySet in interface Double2FloatMapdouble2FloatEntrySet in class Double2FloatOpenCustomHashMappublic DoubleSet keySet()
keySet in interface java.util.Map<java.lang.Double,java.lang.Float>keySet in interface java.util.SortedMap<java.lang.Double,java.lang.Float>keySet in interface Double2FloatMapkeySet in interface Double2FloatSortedMapkeySet in class Double2FloatOpenCustomHashMappublic FloatCollection values()
values in interface java.util.Map<java.lang.Double,java.lang.Float>values in interface java.util.SortedMap<java.lang.Double,java.lang.Float>values in interface Double2FloatMapvalues in interface Double2FloatSortedMapvalues in class Double2FloatOpenCustomHashMappublic void forEach(DoubleFloatConsumer action)
Double2FloatMapforEach in interface Double2FloatMapforEach in class Double2FloatOpenCustomHashMapaction - processor of the values that are iterator overpublic void clear()
clear in interface java.util.Map<java.lang.Double,java.lang.Float>clear in class Double2FloatOpenCustomHashMap