public class Int2FloatLinkedOpenCustomHashMap extends Int2FloatOpenCustomHashMap implements Int2FloatSortedMap
AbstractInt2FloatMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Int2FloatSortedMap.FastSortedSetInt2FloatMap.Entry, Int2FloatMap.FastEntrySet| Constructor and Description |
|---|
Int2FloatLinkedOpenCustomHashMap(int[] keys,
float[] values,
float loadFactor,
IntStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Int2FloatLinkedOpenCustomHashMap(int[] keys,
float[] values,
IntStrategy strategy)
Helper constructor that allow to create a map from unboxed values
|
Int2FloatLinkedOpenCustomHashMap(Int2FloatMap map,
float loadFactor,
IntStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Int2FloatLinkedOpenCustomHashMap(Int2FloatMap map,
IntStrategy strategy)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Int2FloatLinkedOpenCustomHashMap(java.lang.Integer[] keys,
java.lang.Float[] values,
float loadFactor,
IntStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Int2FloatLinkedOpenCustomHashMap(java.lang.Integer[] keys,
java.lang.Float[] values,
IntStrategy strategy)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Int2FloatLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
IntStrategy strategy)
Constructor that defines the minimum capacity and load factor
|
Int2FloatLinkedOpenCustomHashMap(int minCapacity,
IntStrategy strategy)
Constructor that defines the minimum capacity
|
Int2FloatLinkedOpenCustomHashMap(IntStrategy strategy)
Default Constructor
|
Int2FloatLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Integer,? extends java.lang.Float> map,
float loadFactor,
IntStrategy strategy)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Int2FloatLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Integer,? extends java.lang.Float> map,
IntStrategy 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 |
|---|---|
void |
clear() |
IntComparator |
comparator() |
float |
firstFloatValue()
A method to get the first Value of a Map.
|
int |
firstIntKey()
A method to get the first Key of a Map.
|
void |
forEach(IntFloatConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
float |
getAndMoveToFirst(int key)
A Specific get method that allows to move teh given key/value int the first index.
|
float |
getAndMoveToLast(int key)
A Specific get method that allows to move teh given key/value int the last index.
|
Int2FloatSortedMap |
headMap(int toKey)
A Type Specific HeadMap method to reduce boxing/unboxing
|
ObjectSet<Int2FloatMap.Entry> |
int2FloatEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
IntSet |
keySet() |
float |
lastFloatValue()
A method to get the last Value of a Map.
|
int |
lastIntKey()
A method to get the last Key of a Map.
|
boolean |
moveToFirst(int key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(int key)
A specific move method to move a given key/value to the last index.
|
int |
pollFirstIntKey()
A method to get and remove the first Key of a Map.
|
int |
pollLastIntKey()
A method to get and remove the last Key of a Map.
|
float |
putAndMoveToFirst(int key,
float value)
A customized put method that allows you to insert into the first index.
|
float |
putAndMoveToLast(int key,
float value)
A customized put method that allows you to insert into the last index.
|
Int2FloatSortedMap |
subMap(int fromKey,
int toKey)
A Type Specific SubMap method to reduce boxing/unboxing
|
Int2FloatSortedMap |
tailMap(int fromKey)
A Type Specific TailMap method to reduce boxing/unboxing
|
FloatCollection |
values() |
addTo, computeFloat, computeFloatIfAbsent, computeFloatIfPresent, containsKey, containsKey, containsValue, containsValue, get, getFloat, getOrDefault, mergeAllFloat, mergeFloat, put, putIfAbsent, remInt, remIntOrDefault, remove, remove, remove, replace, replace, sizeaddToAll, entrySet, equals, getDefaultReturnValue, getOrDefault, hashCode, putAll, putAll, putAll, putAllIfAbsent, replaceFloats, replaceFloats, setDefaultReturnValuefirstKey, headMap, lastKey, subMap, tailMapaddTo, addToAll, compute, computeFloat, computeFloatIfAbsent, computeFloatIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, get, getDefaultReturnValue, getFloat, getOrDefault, getOrDefault, merge, mergeAllFloat, mergeFloat, put, put, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remInt, remIntOrDefault, remove, remove, remove, replace, replace, replace, replace, replaceAll, replaceFloats, replaceFloats, setDefaultReturnValuepublic Int2FloatLinkedOpenCustomHashMap(IntStrategy strategy)
strategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Int2FloatLinkedOpenCustomHashMap(int minCapacity,
IntStrategy 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 Int2FloatLinkedOpenCustomHashMap(int minCapacity,
float loadFactor,
IntStrategy 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 Int2FloatLinkedOpenCustomHashMap(java.lang.Integer[] keys,
java.lang.Float[] values,
IntStrategy 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 Int2FloatLinkedOpenCustomHashMap(java.lang.Integer[] keys,
java.lang.Float[] values,
float loadFactor,
IntStrategy 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 Int2FloatLinkedOpenCustomHashMap(int[] keys,
float[] values,
IntStrategy 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 Int2FloatLinkedOpenCustomHashMap(int[] keys,
float[] values,
float loadFactor,
IntStrategy 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 Int2FloatLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Integer,? extends java.lang.Float> map,
IntStrategy strategy)
map - the values that should be present in the mapstrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Int2FloatLinkedOpenCustomHashMap(java.util.Map<? extends java.lang.Integer,? extends java.lang.Float> map,
float loadFactor,
IntStrategy 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 Int2FloatLinkedOpenCustomHashMap(Int2FloatMap map, IntStrategy strategy)
map - the values that should be present in the mapstrategy - the strategy that allows hash control.java.lang.NullPointerException - if Strategy is nullpublic Int2FloatLinkedOpenCustomHashMap(Int2FloatMap map, float loadFactor, IntStrategy 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 float putAndMoveToFirst(int key,
float value)
Int2FloatSortedMapputAndMoveToFirst in interface Int2FloatSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public float putAndMoveToLast(int key,
float value)
Int2FloatSortedMapputAndMoveToLast in interface Int2FloatSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(int key)
Int2FloatSortedMapmoveToFirst in interface Int2FloatSortedMapkey - that should be moved to the first indexpublic boolean moveToLast(int key)
Int2FloatSortedMapmoveToLast in interface Int2FloatSortedMapkey - that should be moved to the first lastpublic float getAndMoveToFirst(int key)
Int2FloatSortedMapgetAndMoveToFirst in interface Int2FloatSortedMapkey - that is searched forpublic float getAndMoveToLast(int key)
Int2FloatSortedMapgetAndMoveToLast in interface Int2FloatSortedMapkey - that is searched forpublic IntComparator comparator()
comparator in interface java.util.SortedMap<java.lang.Integer,java.lang.Float>comparator in interface Int2FloatSortedMappublic Int2FloatSortedMap subMap(int fromKey, int toKey)
Int2FloatSortedMapsubMap in interface Int2FloatSortedMapfromKey - where the submap should starttoKey - where the subMap should endpublic Int2FloatSortedMap headMap(int toKey)
Int2FloatSortedMapheadMap in interface Int2FloatSortedMaptoKey - where the headMap should endpublic Int2FloatSortedMap tailMap(int fromKey)
Int2FloatSortedMaptailMap in interface Int2FloatSortedMapfromKey - where the TailMap should startpublic int firstIntKey()
Int2FloatSortedMapfirstIntKey in interface Int2FloatSortedMappublic int pollFirstIntKey()
Int2FloatSortedMappollFirstIntKey in interface Int2FloatSortedMappublic int lastIntKey()
Int2FloatSortedMaplastIntKey in interface Int2FloatSortedMappublic int pollLastIntKey()
Int2FloatSortedMappollLastIntKey in interface Int2FloatSortedMappublic float firstFloatValue()
Int2FloatSortedMapfirstFloatValue in interface Int2FloatSortedMappublic float lastFloatValue()
Int2FloatSortedMaplastFloatValue in interface Int2FloatSortedMappublic ObjectSet<Int2FloatMap.Entry> int2FloatEntrySet()
Int2FloatMapint2FloatEntrySet in interface Int2FloatMapint2FloatEntrySet in class Int2FloatOpenCustomHashMappublic IntSet keySet()
keySet in interface java.util.Map<java.lang.Integer,java.lang.Float>keySet in interface java.util.SortedMap<java.lang.Integer,java.lang.Float>keySet in interface Int2FloatMapkeySet in interface Int2FloatSortedMapkeySet in class Int2FloatOpenCustomHashMappublic FloatCollection values()
values in interface java.util.Map<java.lang.Integer,java.lang.Float>values in interface java.util.SortedMap<java.lang.Integer,java.lang.Float>values in interface Int2FloatMapvalues in interface Int2FloatSortedMapvalues in class Int2FloatOpenCustomHashMappublic void forEach(IntFloatConsumer action)
Int2FloatMapforEach in interface Int2FloatMapforEach in class Int2FloatOpenCustomHashMapaction - processor of the values that are iterator overpublic void clear()
clear in interface java.util.Map<java.lang.Integer,java.lang.Float>clear in class Int2FloatOpenCustomHashMap