public class Short2DoubleLinkedOpenCustomHashMap extends Short2DoubleOpenCustomHashMap implements Short2DoubleOrderedMap
AbstractShort2DoubleMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Short2DoubleOrderedMap.FastOrderedSetShort2DoubleMap.BuilderCache, Short2DoubleMap.Entry, Short2DoubleMap.FastEntrySet, Short2DoubleMap.MapBuilder| Constructor and Description |
|---|
Short2DoubleLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
ShortStrategy strategy)
Constructor that defines the minimum capacity and load factor
|
Short2DoubleLinkedOpenCustomHashMap(int minCapacity,
ShortStrategy strategy)
Constructor that defines the minimum capacity
|
Short2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Short,? extends java.lang.Double> map,
float loadFactor,
ShortStrategy strategy)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Short2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Short,? extends java.lang.Double> map,
ShortStrategy strategy)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Short2DoubleLinkedOpenCustomHashMap(short[] keys,
double[] values,
float loadFactor,
ShortStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Short2DoubleLinkedOpenCustomHashMap(java.lang.Short[] keys,
java.lang.Double[] values,
float loadFactor,
ShortStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Short2DoubleLinkedOpenCustomHashMap(short[] keys,
double[] values,
ShortStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Short2DoubleLinkedOpenCustomHashMap(java.lang.Short[] keys,
java.lang.Double[] values,
ShortStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Short2DoubleLinkedOpenCustomHashMap(Short2DoubleMap map,
float loadFactor,
ShortStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Short2DoubleLinkedOpenCustomHashMap(Short2DoubleMap map,
ShortStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Short2DoubleLinkedOpenCustomHashMap(ShortStrategy strategy)
Default Constructor
|
| 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
|
Short2DoubleLinkedOpenCustomHashMap |
copy()
A Function that does a shallow clone of the Map itself.
|
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.
|
ShortOrderedSet |
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.
|
ObjectOrderedSet<Short2DoubleMap.Entry> |
short2DoubleEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
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, applyAsDouble, builder, compute, computeDouble, computeDoubleIfAbsent, computeDoubleIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, get, get, getDefaultReturnValue, getOrDefault, getOrDefault, merge, mergeAllDouble, mergeDouble, put, put, put, put, putAll, putAll, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remove, remove, remove, remove, removeOrDefault, replace, replace, replace, replace, replaceAll, replaceDoubles, replaceDoubles, setDefaultReturnValue, subFrom, supplyDoubleIfAbsentclearAndTrim, trimpublic Short2DoubleLinkedOpenCustomHashMap(ShortStrategy strategy)
strategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Short2DoubleLinkedOpenCustomHashMap(int minCapacity,
ShortStrategy 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 Short2DoubleLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
ShortStrategy 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 Short2DoubleLinkedOpenCustomHashMap(java.lang.Short[] keys,
java.lang.Double[] values,
ShortStrategy 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 Short2DoubleLinkedOpenCustomHashMap(java.lang.Short[] keys,
java.lang.Double[] values,
float loadFactor,
ShortStrategy 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 Short2DoubleLinkedOpenCustomHashMap(short[] keys,
double[] values,
ShortStrategy 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 Short2DoubleLinkedOpenCustomHashMap(short[] keys,
double[] values,
float loadFactor,
ShortStrategy 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 Short2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Short,? extends java.lang.Double> map,
ShortStrategy strategy)
map - the values that should be present in the mapstrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Short2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Short,? extends java.lang.Double> map,
float loadFactor,
ShortStrategy 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 Short2DoubleLinkedOpenCustomHashMap(Short2DoubleMap map, ShortStrategy strategy)
map - the values that should be present in the mapstrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Short2DoubleLinkedOpenCustomHashMap(Short2DoubleMap map, float loadFactor, ShortStrategy 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(short key,
double value)
Short2DoubleOrderedMapputAndMoveToFirst in interface Short2DoubleOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public double putAndMoveToLast(short key,
double value)
Short2DoubleOrderedMapputAndMoveToLast in interface Short2DoubleOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(short key)
Short2DoubleOrderedMapmoveToFirst in interface Short2DoubleOrderedMapkey - that should be moved to the first indexpublic boolean moveToLast(short key)
Short2DoubleOrderedMapmoveToLast in interface Short2DoubleOrderedMapkey - that should be moved to the first lastpublic double getAndMoveToFirst(short key)
Short2DoubleOrderedMapgetAndMoveToFirst in interface Short2DoubleOrderedMapkey - that is searched forpublic double getAndMoveToLast(short key)
Short2DoubleOrderedMapgetAndMoveToLast in interface Short2DoubleOrderedMapkey - that is searched forpublic Short2DoubleLinkedOpenCustomHashMap copy()
Short2DoubleMapcopy in interface Short2DoubleMapcopy in interface Short2DoubleOrderedMapcopy in class Short2DoubleOpenCustomHashMappublic short firstShortKey()
Short2DoubleOrderedMapfirstShortKey in interface Short2DoubleOrderedMappublic short pollFirstShortKey()
Short2DoubleOrderedMappollFirstShortKey in interface Short2DoubleOrderedMappublic short lastShortKey()
Short2DoubleOrderedMaplastShortKey in interface Short2DoubleOrderedMappublic short pollLastShortKey()
Short2DoubleOrderedMappollLastShortKey in interface Short2DoubleOrderedMappublic double firstDoubleValue()
Short2DoubleOrderedMapfirstDoubleValue in interface Short2DoubleOrderedMappublic double lastDoubleValue()
Short2DoubleOrderedMaplastDoubleValue in interface Short2DoubleOrderedMappublic ObjectOrderedSet<Short2DoubleMap.Entry> short2DoubleEntrySet()
Short2DoubleMapshort2DoubleEntrySet in interface Short2DoubleMapshort2DoubleEntrySet in interface Short2DoubleOrderedMapshort2DoubleEntrySet in class Short2DoubleOpenCustomHashMappublic ShortOrderedSet keySet()
keySet in interface java.util.Map<java.lang.Short,java.lang.Double>keySet in interface Short2DoubleMapkeySet in interface Short2DoubleOrderedMapkeySet in class Short2DoubleOpenCustomHashMappublic DoubleCollection values()
values in interface java.util.Map<java.lang.Short,java.lang.Double>values in interface Short2DoubleMapvalues in class Short2DoubleOpenCustomHashMappublic void forEach(ShortDoubleConsumer action)
Short2DoubleMapforEach in interface Short2DoubleMapforEach in class Short2DoubleOpenCustomHashMapaction - 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 Short2DoubleOpenCustomHashMappublic void clearAndTrim(int size)
ITrimmableclearAndTrim in interface ITrimmableclearAndTrim in class Short2DoubleOpenCustomHashMapsize - the amount of elements that should be allowed