public class Char2FloatLinkedOpenHashMap extends Char2FloatOpenHashMap implements Char2FloatOrderedMap
AbstractChar2FloatMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Char2FloatOrderedMap.FastOrderedSetChar2FloatMap.BuilderCache, Char2FloatMap.Entry, Char2FloatMap.FastEntrySet, Char2FloatMap.MapBuilder| Constructor and Description |
|---|
Char2FloatLinkedOpenHashMap()
Default Constructor
|
Char2FloatLinkedOpenHashMap(char[] keys,
float[] values)
Helper constructor that allow to create a map from unboxed values
|
Char2FloatLinkedOpenHashMap(char[] keys,
float[] values,
float loadFactor)
Helper constructor that allow to create a map from unboxed values
|
Char2FloatLinkedOpenHashMap(Char2FloatMap map)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Char2FloatLinkedOpenHashMap(Char2FloatMap map,
float loadFactor)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Char2FloatLinkedOpenHashMap(java.lang.Character[] keys,
java.lang.Float[] values)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Char2FloatLinkedOpenHashMap(java.lang.Character[] keys,
java.lang.Float[] values,
float loadFactor)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Char2FloatLinkedOpenHashMap(int minCapacity)
Constructor that defines the minimum capacity
|
Char2FloatLinkedOpenHashMap(int minCapacity,
float loadFactor)
Constructor that defines the minimum capacity and load factor
|
Char2FloatLinkedOpenHashMap(java.util.Map<? extends java.lang.Character,? extends java.lang.Float> map)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Char2FloatLinkedOpenHashMap(java.util.Map<? extends java.lang.Character,? extends java.lang.Float> 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 |
|---|---|
ObjectOrderedSet<Char2FloatMap.Entry> |
char2FloatEntrySet()
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
|
boolean |
containsValue(float value)
Type Specific method to reduce boxing/unboxing of values
|
boolean |
containsValue(java.lang.Object value)
Deprecated.
|
Char2FloatLinkedOpenHashMap |
copy()
A Function that does a shallow clone of the Map itself.
|
char |
firstCharKey()
A method to get the first Key of a Map.
|
float |
firstFloatValue()
A method to get the first Value of a Map.
|
void |
forEach(CharFloatConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
float |
getAndMoveToFirst(char key)
A Specific get method that allows to move teh given key/value int the first index.
|
float |
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.
|
float |
lastFloatValue()
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.
|
float |
putAndMoveToFirst(char key,
float value)
A customized put method that allows you to insert into the first index.
|
float |
putAndMoveToLast(char key,
float value)
A customized put method that allows you to insert into the last index.
|
FloatCollection |
values() |
addTo, computeFloat, computeFloatIfAbsent, computeFloatIfPresent, containsKey, containsKey, get, get, getOrDefault, mergeAllFloat, mergeFloat, put, putIfAbsent, remove, remove, remove, remove, removeOrDefault, replace, replace, size, subFrom, supplyFloatIfAbsent, trimaddToAll, entrySet, equals, getDefaultReturnValue, getOrDefault, hashCode, put, putAll, putAll, putAll, putAll, putAllIfAbsent, replaceFloats, replaceFloats, setDefaultReturnValuesynchronize, synchronize, unmodifiableaddTo, addToAll, builder, compute, computeFloat, computeFloatIfAbsent, computeFloatIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, entrySet, forEach, get, get, getDefaultReturnValue, getOrDefault, getOrDefault, merge, mergeAllFloat, mergeFloat, put, put, putAll, putAll, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remove, remove, remove, remove, removeOrDefault, replace, replace, replace, replace, replaceAll, replaceFloats, replaceFloats, setDefaultReturnValue, subFrom, supplyFloatIfAbsentclearAndTrim, trimpublic Char2FloatLinkedOpenHashMap()
public Char2FloatLinkedOpenHashMap(int minCapacity)
minCapacity - the minimum capacity the HashMap is allowed to be.java.lang.IllegalStateException - if the minimum capacity is negativepublic Char2FloatLinkedOpenHashMap(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 Char2FloatLinkedOpenHashMap(java.lang.Character[] keys,
java.lang.Float[] 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 Char2FloatLinkedOpenHashMap(java.lang.Character[] keys,
java.lang.Float[] 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 Char2FloatLinkedOpenHashMap(char[] keys,
float[] 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 Char2FloatLinkedOpenHashMap(char[] keys,
float[] 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 Char2FloatLinkedOpenHashMap(java.util.Map<? extends java.lang.Character,? extends java.lang.Float> map)
map - the values that should be present in the mappublic Char2FloatLinkedOpenHashMap(java.util.Map<? extends java.lang.Character,? extends java.lang.Float> 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 Char2FloatLinkedOpenHashMap(Char2FloatMap map)
map - the values that should be present in the mappublic Char2FloatLinkedOpenHashMap(Char2FloatMap 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 float putAndMoveToFirst(char key,
float value)
Char2FloatOrderedMapputAndMoveToFirst in interface Char2FloatOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public float putAndMoveToLast(char key,
float value)
Char2FloatOrderedMapputAndMoveToLast in interface Char2FloatOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(char key)
Char2FloatOrderedMapmoveToFirst in interface Char2FloatOrderedMapkey - that should be moved to the first indexpublic boolean moveToLast(char key)
Char2FloatOrderedMapmoveToLast in interface Char2FloatOrderedMapkey - that should be moved to the first lastpublic float getAndMoveToFirst(char key)
Char2FloatOrderedMapgetAndMoveToFirst in interface Char2FloatOrderedMapkey - that is searched forpublic float getAndMoveToLast(char key)
Char2FloatOrderedMapgetAndMoveToLast in interface Char2FloatOrderedMapkey - that is searched forpublic boolean containsValue(float value)
Char2FloatMapcontainsValue in interface Char2FloatMapcontainsValue in class Char2FloatOpenHashMapvalue - element that is searched for@Deprecated public boolean containsValue(java.lang.Object value)
containsValue in interface java.util.Map<java.lang.Character,java.lang.Float>containsValue in interface Char2FloatMapcontainsValue in class Char2FloatOpenHashMapvalue - that is searched for.Map.containsValue(Object)public Char2FloatLinkedOpenHashMap copy()
Char2FloatMapcopy in interface Char2FloatMapcopy in interface Char2FloatOrderedMapcopy in class Char2FloatOpenHashMappublic char firstCharKey()
Char2FloatOrderedMapfirstCharKey in interface Char2FloatOrderedMappublic char pollFirstCharKey()
Char2FloatOrderedMappollFirstCharKey in interface Char2FloatOrderedMappublic char lastCharKey()
Char2FloatOrderedMaplastCharKey in interface Char2FloatOrderedMappublic char pollLastCharKey()
Char2FloatOrderedMappollLastCharKey in interface Char2FloatOrderedMappublic float firstFloatValue()
Char2FloatOrderedMapfirstFloatValue in interface Char2FloatOrderedMappublic float lastFloatValue()
Char2FloatOrderedMaplastFloatValue in interface Char2FloatOrderedMappublic ObjectOrderedSet<Char2FloatMap.Entry> char2FloatEntrySet()
Char2FloatMapchar2FloatEntrySet in interface Char2FloatMapchar2FloatEntrySet in interface Char2FloatOrderedMapchar2FloatEntrySet in class Char2FloatOpenHashMappublic CharOrderedSet keySet()
keySet in interface java.util.Map<java.lang.Character,java.lang.Float>keySet in interface Char2FloatMapkeySet in interface Char2FloatOrderedMapkeySet in class Char2FloatOpenHashMappublic FloatCollection values()
values in interface java.util.Map<java.lang.Character,java.lang.Float>values in interface Char2FloatMapvalues in class Char2FloatOpenHashMappublic void forEach(CharFloatConsumer action)
Char2FloatMapforEach in interface Char2FloatMapforEach in class Char2FloatOpenHashMapaction - processor of the values that are iterator overpublic void clear()
clear in interface java.util.Map<java.lang.Character,java.lang.Float>clear in class Char2FloatOpenHashMappublic void clearAndTrim(int size)
ITrimmableclearAndTrim in interface ITrimmableclearAndTrim in class Char2FloatOpenHashMapsize - the amount of elements that should be allowed