public class Char2DoubleLinkedOpenCustomHashMap extends Char2DoubleOpenCustomHashMap implements Char2DoubleOrderedMap
AbstractChar2DoubleMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Char2DoubleOrderedMap.FastOrderedSetChar2DoubleMap.BuilderCache, Char2DoubleMap.Entry, Char2DoubleMap.FastEntrySet, Char2DoubleMap.MapBuilder| Constructor and Description |
|---|
Char2DoubleLinkedOpenCustomHashMap(char[] keys,
double[] values,
CharStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Char2DoubleLinkedOpenCustomHashMap(char[] keys,
double[] values,
float loadFactor,
CharStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Char2DoubleLinkedOpenCustomHashMap(Char2DoubleMap map,
CharStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Char2DoubleLinkedOpenCustomHashMap(Char2DoubleMap map,
float loadFactor,
CharStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Char2DoubleLinkedOpenCustomHashMap(java.lang.Character[] keys,
java.lang.Double[] values,
CharStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Char2DoubleLinkedOpenCustomHashMap(java.lang.Character[] keys,
java.lang.Double[] values,
float loadFactor,
CharStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Char2DoubleLinkedOpenCustomHashMap(CharStrategy strategy)
Default Constructor
|
Char2DoubleLinkedOpenCustomHashMap(int minCapacity,
CharStrategy strategy)
Constructor that defines the minimum capacity
|
Char2DoubleLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
CharStrategy strategy)
Constructor that defines the minimum capacity and load factor
|
Char2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Character,? extends java.lang.Double> map,
CharStrategy strategy)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Char2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Character,? extends java.lang.Double> map,
float loadFactor,
CharStrategy 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 |
|---|---|
ObjectOrderedSet<Char2DoubleMap.Entry> |
char2DoubleEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
void |
clear() |
void |
clearAndTrim(int size)
Trims the collection down to the requested size and clears all elements while doing so
|
Char2DoubleLinkedOpenCustomHashMap |
copy()
A Function that does a shallow clone of the Map itself.
|
char |
firstCharKey()
A method to get the first Key of a Map.
|
double |
firstDoubleValue()
A method to get the first Value of a Map.
|
void |
forEach(CharDoubleConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
double |
getAndMoveToFirst(char key)
A Specific get method that allows to move teh given key/value int the first index.
|
double |
getAndMoveToLast(char key)
A Specific get method that allows to move teh given key/value int the last index.
|
CharOrderedSet |
keySet() |
char |
lastCharKey()
A method to get the last Key of a Map.
|
double |
lastDoubleValue()
A method to get the last Value of a Map.
|
boolean |
moveToFirst(char key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(char key)
A specific move method to move a given key/value to the last index.
|
char |
pollFirstCharKey()
A method to get and remove the first Key of a Map.
|
char |
pollLastCharKey()
A method to get and remove the last Key of a Map.
|
double |
putAndMoveToFirst(char key,
double value)
A customized put method that allows you to insert into the first index.
|
double |
putAndMoveToLast(char key,
double value)
A customized put method that allows you to insert into the last index.
|
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, builder, compute, computeDouble, computeDoubleIfAbsent, computeDoubleIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, get, get, getDefaultReturnValue, getOrDefault, getOrDefault, merge, mergeAllDouble, mergeDouble, 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 Char2DoubleLinkedOpenCustomHashMap(CharStrategy strategy)
strategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Char2DoubleLinkedOpenCustomHashMap(int minCapacity,
CharStrategy 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 Char2DoubleLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
CharStrategy 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 Char2DoubleLinkedOpenCustomHashMap(java.lang.Character[] keys,
java.lang.Double[] values,
CharStrategy 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 Char2DoubleLinkedOpenCustomHashMap(java.lang.Character[] keys,
java.lang.Double[] values,
float loadFactor,
CharStrategy 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 Char2DoubleLinkedOpenCustomHashMap(char[] keys,
double[] values,
CharStrategy 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 Char2DoubleLinkedOpenCustomHashMap(char[] keys,
double[] values,
float loadFactor,
CharStrategy 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 Char2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Character,? extends java.lang.Double> map,
CharStrategy strategy)
map - the values that should be present in the mapstrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Char2DoubleLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Character,? extends java.lang.Double> map,
float loadFactor,
CharStrategy 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 Char2DoubleLinkedOpenCustomHashMap(Char2DoubleMap map, CharStrategy strategy)
map - the values that should be present in the mapstrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Char2DoubleLinkedOpenCustomHashMap(Char2DoubleMap map, float loadFactor, CharStrategy 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(char key,
double value)
Char2DoubleOrderedMapputAndMoveToFirst in interface Char2DoubleOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public double putAndMoveToLast(char key,
double value)
Char2DoubleOrderedMapputAndMoveToLast in interface Char2DoubleOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(char key)
Char2DoubleOrderedMapmoveToFirst in interface Char2DoubleOrderedMapkey - that should be moved to the first indexpublic boolean moveToLast(char key)
Char2DoubleOrderedMapmoveToLast in interface Char2DoubleOrderedMapkey - that should be moved to the first lastpublic double getAndMoveToFirst(char key)
Char2DoubleOrderedMapgetAndMoveToFirst in interface Char2DoubleOrderedMapkey - that is searched forpublic double getAndMoveToLast(char key)
Char2DoubleOrderedMapgetAndMoveToLast in interface Char2DoubleOrderedMapkey - that is searched forpublic Char2DoubleLinkedOpenCustomHashMap copy()
Char2DoubleMapcopy in interface Char2DoubleMapcopy in interface Char2DoubleOrderedMapcopy in class Char2DoubleOpenCustomHashMappublic char firstCharKey()
Char2DoubleOrderedMapfirstCharKey in interface Char2DoubleOrderedMappublic char pollFirstCharKey()
Char2DoubleOrderedMappollFirstCharKey in interface Char2DoubleOrderedMappublic char lastCharKey()
Char2DoubleOrderedMaplastCharKey in interface Char2DoubleOrderedMappublic char pollLastCharKey()
Char2DoubleOrderedMappollLastCharKey in interface Char2DoubleOrderedMappublic double firstDoubleValue()
Char2DoubleOrderedMapfirstDoubleValue in interface Char2DoubleOrderedMappublic double lastDoubleValue()
Char2DoubleOrderedMaplastDoubleValue in interface Char2DoubleOrderedMappublic ObjectOrderedSet<Char2DoubleMap.Entry> char2DoubleEntrySet()
Char2DoubleMapchar2DoubleEntrySet in interface Char2DoubleMapchar2DoubleEntrySet in interface Char2DoubleOrderedMapchar2DoubleEntrySet in class Char2DoubleOpenCustomHashMappublic CharOrderedSet keySet()
keySet in interface java.util.Map<java.lang.Character,java.lang.Double>keySet in interface Char2DoubleMapkeySet in interface Char2DoubleOrderedMapkeySet in class Char2DoubleOpenCustomHashMappublic DoubleCollection values()
values in interface java.util.Map<java.lang.Character,java.lang.Double>values in interface Char2DoubleMapvalues in class Char2DoubleOpenCustomHashMappublic void forEach(CharDoubleConsumer action)
Char2DoubleMapforEach in interface Char2DoubleMapforEach in class Char2DoubleOpenCustomHashMapaction - processor of the values that are iterator overpublic void clear()
clear in interface java.util.Map<java.lang.Character,java.lang.Double>clear in class Char2DoubleOpenCustomHashMappublic void clearAndTrim(int size)
ITrimmableclearAndTrim in interface ITrimmableclearAndTrim in class Char2DoubleOpenCustomHashMapsize - the amount of elements that should be allowed