public class Int2FloatLinkedOpenHashMap extends Int2FloatOpenHashMap implements Int2FloatOrderedMap
AbstractInt2FloatMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Int2FloatOrderedMap.FastOrderedSetInt2FloatMap.BuilderCache, Int2FloatMap.Entry, Int2FloatMap.FastEntrySet, Int2FloatMap.MapBuilder| Constructor and Description |
|---|
Int2FloatLinkedOpenHashMap()
Default Constructor
|
Int2FloatLinkedOpenHashMap(int minCapacity)
Constructor that defines the minimum capacity
|
Int2FloatLinkedOpenHashMap(int[] keys,
float[] values)
Helper constructor that allow to create a map from unboxed values
|
Int2FloatLinkedOpenHashMap(int[] keys,
float[] values,
float loadFactor)
Helper constructor that allow to create a map from unboxed values
|
Int2FloatLinkedOpenHashMap(Int2FloatMap map)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Int2FloatLinkedOpenHashMap(Int2FloatMap map,
float loadFactor)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Int2FloatLinkedOpenHashMap(java.lang.Integer[] keys,
java.lang.Float[] values)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Int2FloatLinkedOpenHashMap(java.lang.Integer[] keys,
java.lang.Float[] values,
float loadFactor)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Int2FloatLinkedOpenHashMap(int minCapacity,
float loadFactor)
Constructor that defines the minimum capacity and load factor
|
Int2FloatLinkedOpenHashMap(java.util.Map<? extends java.lang.Integer,? extends java.lang.Float> map)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
Int2FloatLinkedOpenHashMap(java.util.Map<? extends java.lang.Integer,? 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 |
|---|---|
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.
|
Int2FloatLinkedOpenHashMap |
copy()
A Function that does a shallow clone of the Map itself.
|
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.
|
ObjectOrderedSet<Int2FloatMap.Entry> |
int2FloatEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
IntOrderedSet |
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.
|
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, applyAsFloat, builder, compute, computeFloat, computeFloatIfAbsent, computeFloatIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, entrySet, forEach, get, get, getDefaultReturnValue, getOrDefault, getOrDefault, merge, mergeAllFloat, mergeFloat, put, put, 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 Int2FloatLinkedOpenHashMap()
public Int2FloatLinkedOpenHashMap(int minCapacity)
minCapacity - the minimum capacity the HashMap is allowed to be.java.lang.IllegalStateException - if the minimum capacity is negativepublic Int2FloatLinkedOpenHashMap(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 Int2FloatLinkedOpenHashMap(java.lang.Integer[] 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 Int2FloatLinkedOpenHashMap(java.lang.Integer[] 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 Int2FloatLinkedOpenHashMap(int[] 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 Int2FloatLinkedOpenHashMap(int[] 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 Int2FloatLinkedOpenHashMap(java.util.Map<? extends java.lang.Integer,? extends java.lang.Float> map)
map - the values that should be present in the mappublic Int2FloatLinkedOpenHashMap(java.util.Map<? extends java.lang.Integer,? 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 Int2FloatLinkedOpenHashMap(Int2FloatMap map)
map - the values that should be present in the mappublic Int2FloatLinkedOpenHashMap(Int2FloatMap 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(int key,
float value)
Int2FloatOrderedMapputAndMoveToFirst in interface Int2FloatOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public float putAndMoveToLast(int key,
float value)
Int2FloatOrderedMapputAndMoveToLast in interface Int2FloatOrderedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(int key)
Int2FloatOrderedMapmoveToFirst in interface Int2FloatOrderedMapkey - that should be moved to the first indexpublic boolean moveToLast(int key)
Int2FloatOrderedMapmoveToLast in interface Int2FloatOrderedMapkey - that should be moved to the first lastpublic float getAndMoveToFirst(int key)
Int2FloatOrderedMapgetAndMoveToFirst in interface Int2FloatOrderedMapkey - that is searched forpublic float getAndMoveToLast(int key)
Int2FloatOrderedMapgetAndMoveToLast in interface Int2FloatOrderedMapkey - that is searched forpublic boolean containsValue(float value)
Int2FloatMapcontainsValue in interface Int2FloatMapcontainsValue in class Int2FloatOpenHashMapvalue - element that is searched for@Deprecated public boolean containsValue(java.lang.Object value)
containsValue in interface java.util.Map<java.lang.Integer,java.lang.Float>containsValue in interface Int2FloatMapcontainsValue in class Int2FloatOpenHashMapvalue - that is searched for.Map.containsValue(Object)public Int2FloatLinkedOpenHashMap copy()
Int2FloatMapcopy in interface Int2FloatMapcopy in interface Int2FloatOrderedMapcopy in class Int2FloatOpenHashMappublic int firstIntKey()
Int2FloatOrderedMapfirstIntKey in interface Int2FloatOrderedMappublic int pollFirstIntKey()
Int2FloatOrderedMappollFirstIntKey in interface Int2FloatOrderedMappublic int lastIntKey()
Int2FloatOrderedMaplastIntKey in interface Int2FloatOrderedMappublic int pollLastIntKey()
Int2FloatOrderedMappollLastIntKey in interface Int2FloatOrderedMappublic float firstFloatValue()
Int2FloatOrderedMapfirstFloatValue in interface Int2FloatOrderedMappublic float lastFloatValue()
Int2FloatOrderedMaplastFloatValue in interface Int2FloatOrderedMappublic ObjectOrderedSet<Int2FloatMap.Entry> int2FloatEntrySet()
Int2FloatMapint2FloatEntrySet in interface Int2FloatMapint2FloatEntrySet in interface Int2FloatOrderedMapint2FloatEntrySet in class Int2FloatOpenHashMappublic IntOrderedSet keySet()
keySet in interface java.util.Map<java.lang.Integer,java.lang.Float>keySet in interface Int2FloatMapkeySet in interface Int2FloatOrderedMapkeySet in class Int2FloatOpenHashMappublic FloatCollection values()
values in interface java.util.Map<java.lang.Integer,java.lang.Float>values in interface Int2FloatMapvalues in class Int2FloatOpenHashMappublic void forEach(IntFloatConsumer action)
Int2FloatMapforEach in interface Int2FloatMapforEach in class Int2FloatOpenHashMapaction - 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 Int2FloatOpenHashMappublic void clearAndTrim(int size)
ITrimmableclearAndTrim in interface ITrimmableclearAndTrim in class Int2FloatOpenHashMapsize - the amount of elements that should be allowed