public class Double2DoubleLinkedOpenHashMap extends Double2DoubleOpenHashMap implements Double2DoubleSortedMap
AbstractDouble2DoubleMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Double2DoubleSortedMap.FastSortedSetDouble2DoubleMap.Entry, Double2DoubleMap.FastEntrySet| Constructor and Description |
|---|
Double2DoubleLinkedOpenHashMap()
Default Constructor
|
Double2DoubleLinkedOpenHashMap(double[] keys,
double[] values)
Helper constructor that allow to create a map from unboxed values
|
Double2DoubleLinkedOpenHashMap(java.lang.Double[] keys,
java.lang.Double[] values)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Double2DoubleLinkedOpenHashMap(double[] keys,
double[] values,
float loadFactor)
Helper constructor that allow to create a map from unboxed values
|
Double2DoubleLinkedOpenHashMap(java.lang.Double[] keys,
java.lang.Double[] values,
float loadFactor)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Double2DoubleLinkedOpenHashMap(Double2DoubleMap map)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Double2DoubleLinkedOpenHashMap(Double2DoubleMap map,
float loadFactor)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Double2DoubleLinkedOpenHashMap(int minCapacity)
Constructor that defines the minimum capacity
|
Double2DoubleLinkedOpenHashMap(int minCapacity,
float loadFactor)
Constructor that defines the minimum capacity and load factor
|
Double2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Double> map)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Double2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Double> 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 |
|---|---|
void |
clear() |
DoubleComparator |
comparator() |
ObjectSet<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.
|
Double2DoubleSortedMap |
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.
|
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.
|
Double2DoubleSortedMap |
subMap(double fromKey,
double toKey)
A Type Specific SubMap method to reduce boxing/unboxing
|
Double2DoubleSortedMap |
tailMap(double fromKey)
A Type Specific TailMap method to reduce boxing/unboxing
|
DoubleCollection |
values() |
addTo, computeDouble, computeDoubleIfAbsent, computeDoubleIfPresent, containsKey, containsKey, containsValue, containsValue, get, getDouble, getOrDefault, mergeAllDouble, mergeDouble, put, putIfAbsent, remDouble, remDoubleOrDefault, remove, remove, remove, replace, replace, sizeaddToAll, entrySet, equals, getDefaultReturnValue, getOrDefault, hashCode, putAll, putAll, putAll, putAllIfAbsent, replaceDoubles, replaceDoubles, setDefaultReturnValuefirstKey, headMap, lastKey, subMap, tailMapaddTo, addToAll, compute, computeDouble, computeDoubleIfAbsent, computeDoubleIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, get, getDefaultReturnValue, getDouble, getOrDefault, getOrDefault, merge, mergeAllDouble, mergeDouble, put, put, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remDouble, remDoubleOrDefault, remove, remove, remove, replace, replace, replace, replace, replaceAll, replaceDoubles, replaceDoubles, setDefaultReturnValueapplyAsDoublepublic Double2DoubleLinkedOpenHashMap()
public Double2DoubleLinkedOpenHashMap(int minCapacity)
minCapacity - the minimum capacity the HashMap is allowed to be.java.lang.IllegalStateException - if the minimum capacity is negativepublic Double2DoubleLinkedOpenHashMap(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 Double2DoubleLinkedOpenHashMap(java.lang.Double[] keys,
java.lang.Double[] 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 Double2DoubleLinkedOpenHashMap(java.lang.Double[] keys,
java.lang.Double[] 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 Double2DoubleLinkedOpenHashMap(double[] keys,
double[] 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 Double2DoubleLinkedOpenHashMap(double[] keys,
double[] 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 Double2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Double> map)
map - the values that should be present in the mappublic Double2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Double,? extends java.lang.Double> 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 Double2DoubleLinkedOpenHashMap(Double2DoubleMap map)
map - the values that should be present in the mappublic Double2DoubleLinkedOpenHashMap(Double2DoubleMap 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 double putAndMoveToFirst(double key,
double value)
Double2DoubleSortedMapputAndMoveToFirst in interface Double2DoubleSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public double putAndMoveToLast(double key,
double value)
Double2DoubleSortedMapputAndMoveToLast in interface Double2DoubleSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(double key)
Double2DoubleSortedMapmoveToFirst in interface Double2DoubleSortedMapkey - that should be moved to the first indexpublic boolean moveToLast(double key)
Double2DoubleSortedMapmoveToLast in interface Double2DoubleSortedMapkey - that should be moved to the first lastpublic double getAndMoveToFirst(double key)
Double2DoubleSortedMapgetAndMoveToFirst in interface Double2DoubleSortedMapkey - that is searched forpublic double getAndMoveToLast(double key)
Double2DoubleSortedMapgetAndMoveToLast in interface Double2DoubleSortedMapkey - that is searched forpublic DoubleComparator comparator()
comparator in interface java.util.SortedMap<java.lang.Double,java.lang.Double>comparator in interface Double2DoubleSortedMappublic Double2DoubleSortedMap subMap(double fromKey, double toKey)
Double2DoubleSortedMapsubMap in interface Double2DoubleSortedMapfromKey - where the submap should starttoKey - where the subMap should endpublic Double2DoubleSortedMap headMap(double toKey)
Double2DoubleSortedMapheadMap in interface Double2DoubleSortedMaptoKey - where the headMap should endpublic Double2DoubleSortedMap tailMap(double fromKey)
Double2DoubleSortedMaptailMap in interface Double2DoubleSortedMapfromKey - where the TailMap should startpublic double firstDoubleKey()
Double2DoubleSortedMapfirstDoubleKey in interface Double2DoubleSortedMappublic double pollFirstDoubleKey()
Double2DoubleSortedMappollFirstDoubleKey in interface Double2DoubleSortedMappublic double lastDoubleKey()
Double2DoubleSortedMaplastDoubleKey in interface Double2DoubleSortedMappublic double pollLastDoubleKey()
Double2DoubleSortedMappollLastDoubleKey in interface Double2DoubleSortedMappublic double firstDoubleValue()
Double2DoubleSortedMapfirstDoubleValue in interface Double2DoubleSortedMappublic double lastDoubleValue()
Double2DoubleSortedMaplastDoubleValue in interface Double2DoubleSortedMappublic ObjectSet<Double2DoubleMap.Entry> double2DoubleEntrySet()
Double2DoubleMapdouble2DoubleEntrySet in interface Double2DoubleMapdouble2DoubleEntrySet in class Double2DoubleOpenHashMappublic DoubleSet keySet()
keySet in interface java.util.Map<java.lang.Double,java.lang.Double>keySet in interface java.util.SortedMap<java.lang.Double,java.lang.Double>keySet in interface Double2DoubleMapkeySet in interface Double2DoubleSortedMapkeySet in class Double2DoubleOpenHashMappublic DoubleCollection values()
values in interface java.util.Map<java.lang.Double,java.lang.Double>values in interface java.util.SortedMap<java.lang.Double,java.lang.Double>values in interface Double2DoubleMapvalues in interface Double2DoubleSortedMapvalues in class Double2DoubleOpenHashMappublic void forEach(DoubleDoubleConsumer action)
Double2DoubleMapforEach in interface Double2DoubleMapforEach in class Double2DoubleOpenHashMapaction - 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 Double2DoubleOpenHashMap