public class Long2DoubleLinkedOpenHashMap extends Long2DoubleOpenHashMap implements Long2DoubleSortedMap
AbstractLong2DoubleMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Long2DoubleSortedMap.FastSortedSetLong2DoubleMap.Entry, Long2DoubleMap.FastEntrySet| Constructor and Description |
|---|
Long2DoubleLinkedOpenHashMap()
Default Constructor
|
Long2DoubleLinkedOpenHashMap(int minCapacity)
Constructor that defines the minimum capacity
|
Long2DoubleLinkedOpenHashMap(int minCapacity,
float loadFactor)
Constructor that defines the minimum capacity and load factor
|
Long2DoubleLinkedOpenHashMap(long[] keys,
double[] values)
Helper constructor that allow to create a map from unboxed values
|
Long2DoubleLinkedOpenHashMap(java.lang.Long[] keys,
java.lang.Double[] values)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Long2DoubleLinkedOpenHashMap(long[] keys,
double[] values,
float loadFactor)
Helper constructor that allow to create a map from unboxed values
|
Long2DoubleLinkedOpenHashMap(java.lang.Long[] keys,
java.lang.Double[] values,
float loadFactor)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Long2DoubleLinkedOpenHashMap(Long2DoubleMap map)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Long2DoubleLinkedOpenHashMap(Long2DoubleMap map,
float loadFactor)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Long2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Long,? extends java.lang.Double> map)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Long2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Long,? 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() |
LongComparator |
comparator() |
double |
firstDoubleValue()
A method to get the first Value of a Map.
|
long |
firstLongKey()
A method to get the first Key of a Map.
|
void |
forEach(LongDoubleConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
double |
getAndMoveToFirst(long key)
A Specific get method that allows to move teh given key/value int the first index.
|
double |
getAndMoveToLast(long key)
A Specific get method that allows to move teh given key/value int the last index.
|
Long2DoubleSortedMap |
headMap(long toKey)
A Type Specific HeadMap method to reduce boxing/unboxing
|
LongSet |
keySet() |
double |
lastDoubleValue()
A method to get the last Value of a Map.
|
long |
lastLongKey()
A method to get the last Key of a Map.
|
ObjectSet<Long2DoubleMap.Entry> |
long2DoubleEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
boolean |
moveToFirst(long key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(long key)
A specific move method to move a given key/value to the last index.
|
long |
pollFirstLongKey()
A method to get and remove the first Key of a Map.
|
long |
pollLastLongKey()
A method to get and remove the last Key of a Map.
|
double |
putAndMoveToFirst(long key,
double value)
A customized put method that allows you to insert into the first index.
|
double |
putAndMoveToLast(long key,
double value)
A customized put method that allows you to insert into the last index.
|
Long2DoubleSortedMap |
subMap(long fromKey,
long toKey)
A Type Specific SubMap method to reduce boxing/unboxing
|
Long2DoubleSortedMap |
tailMap(long 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, remLong, remLongOrDefault, 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, remLong, remLongOrDefault, remove, remove, remove, replace, replace, replace, replace, replaceAll, replaceDoubles, replaceDoubles, setDefaultReturnValueapplyAsDoublepublic Long2DoubleLinkedOpenHashMap()
public Long2DoubleLinkedOpenHashMap(int minCapacity)
minCapacity - the minimum capacity the HashMap is allowed to be.java.lang.IllegalStateException - if the minimum capacity is negativepublic Long2DoubleLinkedOpenHashMap(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 Long2DoubleLinkedOpenHashMap(java.lang.Long[] 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 Long2DoubleLinkedOpenHashMap(java.lang.Long[] 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 Long2DoubleLinkedOpenHashMap(long[] 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 Long2DoubleLinkedOpenHashMap(long[] 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 Long2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Long,? extends java.lang.Double> map)
map - the values that should be present in the mappublic Long2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Long,? 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 Long2DoubleLinkedOpenHashMap(Long2DoubleMap map)
map - the values that should be present in the mappublic Long2DoubleLinkedOpenHashMap(Long2DoubleMap 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(long key,
double value)
Long2DoubleSortedMapputAndMoveToFirst in interface Long2DoubleSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public double putAndMoveToLast(long key,
double value)
Long2DoubleSortedMapputAndMoveToLast in interface Long2DoubleSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(long key)
Long2DoubleSortedMapmoveToFirst in interface Long2DoubleSortedMapkey - that should be moved to the first indexpublic boolean moveToLast(long key)
Long2DoubleSortedMapmoveToLast in interface Long2DoubleSortedMapkey - that should be moved to the first lastpublic double getAndMoveToFirst(long key)
Long2DoubleSortedMapgetAndMoveToFirst in interface Long2DoubleSortedMapkey - that is searched forpublic double getAndMoveToLast(long key)
Long2DoubleSortedMapgetAndMoveToLast in interface Long2DoubleSortedMapkey - that is searched forpublic LongComparator comparator()
comparator in interface java.util.SortedMap<java.lang.Long,java.lang.Double>comparator in interface Long2DoubleSortedMappublic Long2DoubleSortedMap subMap(long fromKey, long toKey)
Long2DoubleSortedMapsubMap in interface Long2DoubleSortedMapfromKey - where the submap should starttoKey - where the subMap should endpublic Long2DoubleSortedMap headMap(long toKey)
Long2DoubleSortedMapheadMap in interface Long2DoubleSortedMaptoKey - where the headMap should endpublic Long2DoubleSortedMap tailMap(long fromKey)
Long2DoubleSortedMaptailMap in interface Long2DoubleSortedMapfromKey - where the TailMap should startpublic long firstLongKey()
Long2DoubleSortedMapfirstLongKey in interface Long2DoubleSortedMappublic long pollFirstLongKey()
Long2DoubleSortedMappollFirstLongKey in interface Long2DoubleSortedMappublic long lastLongKey()
Long2DoubleSortedMaplastLongKey in interface Long2DoubleSortedMappublic long pollLastLongKey()
Long2DoubleSortedMappollLastLongKey in interface Long2DoubleSortedMappublic double firstDoubleValue()
Long2DoubleSortedMapfirstDoubleValue in interface Long2DoubleSortedMappublic double lastDoubleValue()
Long2DoubleSortedMaplastDoubleValue in interface Long2DoubleSortedMappublic ObjectSet<Long2DoubleMap.Entry> long2DoubleEntrySet()
Long2DoubleMaplong2DoubleEntrySet in interface Long2DoubleMaplong2DoubleEntrySet in class Long2DoubleOpenHashMappublic LongSet keySet()
keySet in interface java.util.Map<java.lang.Long,java.lang.Double>keySet in interface java.util.SortedMap<java.lang.Long,java.lang.Double>keySet in interface Long2DoubleMapkeySet in interface Long2DoubleSortedMapkeySet in class Long2DoubleOpenHashMappublic DoubleCollection values()
values in interface java.util.Map<java.lang.Long,java.lang.Double>values in interface java.util.SortedMap<java.lang.Long,java.lang.Double>values in interface Long2DoubleMapvalues in interface Long2DoubleSortedMapvalues in class Long2DoubleOpenHashMappublic void forEach(LongDoubleConsumer action)
Long2DoubleMapforEach in interface Long2DoubleMapforEach in class Long2DoubleOpenHashMapaction - processor of the values that are iterator overpublic void clear()
clear in interface java.util.Map<java.lang.Long,java.lang.Double>clear in class Long2DoubleOpenHashMap