public class Short2DoubleLinkedOpenHashMap extends Short2DoubleOpenHashMap implements Short2DoubleSortedMap
AbstractShort2DoubleMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Short2DoubleSortedMap.FastSortedSetShort2DoubleMap.Entry, Short2DoubleMap.FastEntrySet| Constructor and Description |
|---|
Short2DoubleLinkedOpenHashMap()
Default Constructor
|
Short2DoubleLinkedOpenHashMap(int minCapacity)
Constructor that defines the minimum capacity
|
Short2DoubleLinkedOpenHashMap(int minCapacity,
float loadFactor)
Constructor that defines the minimum capacity and load factor
|
Short2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Short,? extends java.lang.Double> map)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Short2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Short,? 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.
|
Short2DoubleLinkedOpenHashMap(short[] keys,
double[] values)
Helper constructor that allow to create a map from unboxed values
|
Short2DoubleLinkedOpenHashMap(java.lang.Short[] keys,
java.lang.Double[] values)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Short2DoubleLinkedOpenHashMap(short[] keys,
double[] values,
float loadFactor)
Helper constructor that allow to create a map from unboxed values
|
Short2DoubleLinkedOpenHashMap(java.lang.Short[] keys,
java.lang.Double[] values,
float loadFactor)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Short2DoubleLinkedOpenHashMap(Short2DoubleMap map)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Short2DoubleLinkedOpenHashMap(Short2DoubleMap map,
float loadFactor)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
ShortComparator |
comparator() |
double |
firstDoubleValue()
A method to get the first Value of a Map.
|
short |
firstShortKey()
A method to get the first Key of a Map.
|
void |
forEach(ShortDoubleConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
double |
getAndMoveToFirst(short key)
A Specific get method that allows to move teh given key/value int the first index.
|
double |
getAndMoveToLast(short key)
A Specific get method that allows to move teh given key/value int the last index.
|
Short2DoubleSortedMap |
headMap(short toKey)
A Type Specific HeadMap method to reduce boxing/unboxing
|
ShortSet |
keySet() |
double |
lastDoubleValue()
A method to get the last Value of a Map.
|
short |
lastShortKey()
A method to get the last Key of a Map.
|
boolean |
moveToFirst(short key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(short key)
A specific move method to move a given key/value to the last index.
|
short |
pollFirstShortKey()
A method to get and remove the first Key of a Map.
|
short |
pollLastShortKey()
A method to get and remove the last Key of a Map.
|
double |
putAndMoveToFirst(short key,
double value)
A customized put method that allows you to insert into the first index.
|
double |
putAndMoveToLast(short key,
double value)
A customized put method that allows you to insert into the last index.
|
ObjectSet<Short2DoubleMap.Entry> |
short2DoubleEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
Short2DoubleSortedMap |
subMap(short fromKey,
short toKey)
A Type Specific SubMap method to reduce boxing/unboxing
|
Short2DoubleSortedMap |
tailMap(short 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, remove, remove, remove, remShort, remShortOrDefault, 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, remove, remove, remove, remShort, remShortOrDefault, replace, replace, replace, replace, replaceAll, replaceDoubles, replaceDoubles, setDefaultReturnValuepublic Short2DoubleLinkedOpenHashMap()
public Short2DoubleLinkedOpenHashMap(int minCapacity)
minCapacity - the minimum capacity the HashMap is allowed to be.java.lang.IllegalStateException - if the minimum capacity is negativepublic Short2DoubleLinkedOpenHashMap(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 Short2DoubleLinkedOpenHashMap(java.lang.Short[] 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 Short2DoubleLinkedOpenHashMap(java.lang.Short[] 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 Short2DoubleLinkedOpenHashMap(short[] 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 Short2DoubleLinkedOpenHashMap(short[] 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 Short2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Short,? extends java.lang.Double> map)
map - the values that should be present in the mappublic Short2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Short,? 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 Short2DoubleLinkedOpenHashMap(Short2DoubleMap map)
map - the values that should be present in the mappublic Short2DoubleLinkedOpenHashMap(Short2DoubleMap 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(short key,
double value)
Short2DoubleSortedMapputAndMoveToFirst in interface Short2DoubleSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public double putAndMoveToLast(short key,
double value)
Short2DoubleSortedMapputAndMoveToLast in interface Short2DoubleSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(short key)
Short2DoubleSortedMapmoveToFirst in interface Short2DoubleSortedMapkey - that should be moved to the first indexpublic boolean moveToLast(short key)
Short2DoubleSortedMapmoveToLast in interface Short2DoubleSortedMapkey - that should be moved to the first lastpublic double getAndMoveToFirst(short key)
Short2DoubleSortedMapgetAndMoveToFirst in interface Short2DoubleSortedMapkey - that is searched forpublic double getAndMoveToLast(short key)
Short2DoubleSortedMapgetAndMoveToLast in interface Short2DoubleSortedMapkey - that is searched forpublic ShortComparator comparator()
comparator in interface java.util.SortedMap<java.lang.Short,java.lang.Double>comparator in interface Short2DoubleSortedMappublic Short2DoubleSortedMap subMap(short fromKey, short toKey)
Short2DoubleSortedMapsubMap in interface Short2DoubleSortedMapfromKey - where the submap should starttoKey - where the subMap should endpublic Short2DoubleSortedMap headMap(short toKey)
Short2DoubleSortedMapheadMap in interface Short2DoubleSortedMaptoKey - where the headMap should endpublic Short2DoubleSortedMap tailMap(short fromKey)
Short2DoubleSortedMaptailMap in interface Short2DoubleSortedMapfromKey - where the TailMap should startpublic short firstShortKey()
Short2DoubleSortedMapfirstShortKey in interface Short2DoubleSortedMappublic short pollFirstShortKey()
Short2DoubleSortedMappollFirstShortKey in interface Short2DoubleSortedMappublic short lastShortKey()
Short2DoubleSortedMaplastShortKey in interface Short2DoubleSortedMappublic short pollLastShortKey()
Short2DoubleSortedMappollLastShortKey in interface Short2DoubleSortedMappublic double firstDoubleValue()
Short2DoubleSortedMapfirstDoubleValue in interface Short2DoubleSortedMappublic double lastDoubleValue()
Short2DoubleSortedMaplastDoubleValue in interface Short2DoubleSortedMappublic ObjectSet<Short2DoubleMap.Entry> short2DoubleEntrySet()
Short2DoubleMapshort2DoubleEntrySet in interface Short2DoubleMapshort2DoubleEntrySet in class Short2DoubleOpenHashMappublic ShortSet keySet()
keySet in interface java.util.Map<java.lang.Short,java.lang.Double>keySet in interface java.util.SortedMap<java.lang.Short,java.lang.Double>keySet in interface Short2DoubleMapkeySet in interface Short2DoubleSortedMapkeySet in class Short2DoubleOpenHashMappublic DoubleCollection values()
values in interface java.util.Map<java.lang.Short,java.lang.Double>values in interface java.util.SortedMap<java.lang.Short,java.lang.Double>values in interface Short2DoubleMapvalues in interface Short2DoubleSortedMapvalues in class Short2DoubleOpenHashMappublic void forEach(ShortDoubleConsumer action)
Short2DoubleMapforEach in interface Short2DoubleMapforEach in class Short2DoubleOpenHashMapaction - processor of the values that are iterator overpublic void clear()
clear in interface java.util.Map<java.lang.Short,java.lang.Double>clear in class Short2DoubleOpenHashMap