public class Char2DoubleLinkedOpenHashMap extends Char2DoubleOpenHashMap implements Char2DoubleSortedMap
AbstractChar2DoubleMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Char2DoubleSortedMap.FastSortedSetChar2DoubleMap.Entry, Char2DoubleMap.FastEntrySet| Constructor and Description |
|---|
Char2DoubleLinkedOpenHashMap()
Default Constructor
|
Char2DoubleLinkedOpenHashMap(char[] keys,
double[] values)
Helper constructor that allow to create a map from unboxed values
|
Char2DoubleLinkedOpenHashMap(char[] keys,
double[] values,
float loadFactor)
Helper constructor that allow to create a map from unboxed values
|
Char2DoubleLinkedOpenHashMap(Char2DoubleMap map)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Char2DoubleLinkedOpenHashMap(Char2DoubleMap map,
float loadFactor)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Char2DoubleLinkedOpenHashMap(java.lang.Character[] keys,
java.lang.Double[] values)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Char2DoubleLinkedOpenHashMap(java.lang.Character[] keys,
java.lang.Double[] values,
float loadFactor)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Char2DoubleLinkedOpenHashMap(int minCapacity)
Constructor that defines the minimum capacity
|
Char2DoubleLinkedOpenHashMap(int minCapacity,
float loadFactor)
Constructor that defines the minimum capacity and load factor
|
Char2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Character,? extends java.lang.Double> map)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Char2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Character,? 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 |
|---|---|
ObjectSet<Char2DoubleMap.Entry> |
char2DoubleEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
void |
clear() |
CharComparator |
comparator() |
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.
|
Char2DoubleSortedMap |
headMap(char toKey)
A Type Specific HeadMap method to reduce boxing/unboxing
|
CharSet |
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.
|
Char2DoubleSortedMap |
subMap(char fromKey,
char toKey)
A Type Specific SubMap method to reduce boxing/unboxing
|
Char2DoubleSortedMap |
tailMap(char 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, remChar, remCharOrDefault, 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, remChar, remCharOrDefault, remove, remove, remove, replace, replace, replace, replace, replaceAll, replaceDoubles, replaceDoubles, setDefaultReturnValuepublic Char2DoubleLinkedOpenHashMap()
public Char2DoubleLinkedOpenHashMap(int minCapacity)
minCapacity - the minimum capacity the HashMap is allowed to be.java.lang.IllegalStateException - if the minimum capacity is negativepublic Char2DoubleLinkedOpenHashMap(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 Char2DoubleLinkedOpenHashMap(java.lang.Character[] 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 Char2DoubleLinkedOpenHashMap(java.lang.Character[] 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 Char2DoubleLinkedOpenHashMap(char[] 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 Char2DoubleLinkedOpenHashMap(char[] 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 Char2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Character,? extends java.lang.Double> map)
map - the values that should be present in the mappublic Char2DoubleLinkedOpenHashMap(java.util.Map<? extends java.lang.Character,? 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 Char2DoubleLinkedOpenHashMap(Char2DoubleMap map)
map - the values that should be present in the mappublic Char2DoubleLinkedOpenHashMap(Char2DoubleMap 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(char key,
double value)
Char2DoubleSortedMapputAndMoveToFirst in interface Char2DoubleSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public double putAndMoveToLast(char key,
double value)
Char2DoubleSortedMapputAndMoveToLast in interface Char2DoubleSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(char key)
Char2DoubleSortedMapmoveToFirst in interface Char2DoubleSortedMapkey - that should be moved to the first indexpublic boolean moveToLast(char key)
Char2DoubleSortedMapmoveToLast in interface Char2DoubleSortedMapkey - that should be moved to the first lastpublic double getAndMoveToFirst(char key)
Char2DoubleSortedMapgetAndMoveToFirst in interface Char2DoubleSortedMapkey - that is searched forpublic double getAndMoveToLast(char key)
Char2DoubleSortedMapgetAndMoveToLast in interface Char2DoubleSortedMapkey - that is searched forpublic CharComparator comparator()
comparator in interface java.util.SortedMap<java.lang.Character,java.lang.Double>comparator in interface Char2DoubleSortedMappublic Char2DoubleSortedMap subMap(char fromKey, char toKey)
Char2DoubleSortedMapsubMap in interface Char2DoubleSortedMapfromKey - where the submap should starttoKey - where the subMap should endpublic Char2DoubleSortedMap headMap(char toKey)
Char2DoubleSortedMapheadMap in interface Char2DoubleSortedMaptoKey - where the headMap should endpublic Char2DoubleSortedMap tailMap(char fromKey)
Char2DoubleSortedMaptailMap in interface Char2DoubleSortedMapfromKey - where the TailMap should startpublic char firstCharKey()
Char2DoubleSortedMapfirstCharKey in interface Char2DoubleSortedMappublic char pollFirstCharKey()
Char2DoubleSortedMappollFirstCharKey in interface Char2DoubleSortedMappublic char lastCharKey()
Char2DoubleSortedMaplastCharKey in interface Char2DoubleSortedMappublic char pollLastCharKey()
Char2DoubleSortedMappollLastCharKey in interface Char2DoubleSortedMappublic double firstDoubleValue()
Char2DoubleSortedMapfirstDoubleValue in interface Char2DoubleSortedMappublic double lastDoubleValue()
Char2DoubleSortedMaplastDoubleValue in interface Char2DoubleSortedMappublic ObjectSet<Char2DoubleMap.Entry> char2DoubleEntrySet()
Char2DoubleMapchar2DoubleEntrySet in interface Char2DoubleMapchar2DoubleEntrySet in class Char2DoubleOpenHashMappublic CharSet keySet()
keySet in interface java.util.Map<java.lang.Character,java.lang.Double>keySet in interface java.util.SortedMap<java.lang.Character,java.lang.Double>keySet in interface Char2DoubleMapkeySet in interface Char2DoubleSortedMapkeySet in class Char2DoubleOpenHashMappublic DoubleCollection values()
values in interface java.util.Map<java.lang.Character,java.lang.Double>values in interface java.util.SortedMap<java.lang.Character,java.lang.Double>values in interface Char2DoubleMapvalues in interface Char2DoubleSortedMapvalues in class Char2DoubleOpenHashMappublic void forEach(CharDoubleConsumer action)
Char2DoubleMapforEach in interface Char2DoubleMapforEach in class Char2DoubleOpenHashMapaction - 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 Char2DoubleOpenHashMap