public class Long2IntArrayMap extends AbstractLong2IntMap implements Long2IntSortedMap
AbstractLong2IntMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Long2IntSortedMap.FastSortedSetLong2IntMap.Entry, Long2IntMap.FastEntrySet| Constructor and Description |
|---|
Long2IntArrayMap()
Default Constructor
|
Long2IntArrayMap(int minCapacity)
Constructor that defines the minimum capacity
|
Long2IntArrayMap(long[] keys,
int[] values)
Helper constructor that allow to create a map from unboxed values
|
Long2IntArrayMap(long[] keys,
int[] values,
int length)
Helper constructor that allow to create a map from unboxed values
|
Long2IntArrayMap(java.lang.Long[] keys,
java.lang.Integer[] values)
Helper constructor that allow to create a map from boxed values (it will unbox them)
|
Long2IntArrayMap(java.lang.Long[] keys,
java.lang.Integer[] values,
int length)
Helper constructor that allow to create a map from boxed values (it will unbox them) with a custom length
|
Long2IntArrayMap(Long2IntMap map)
A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
|
Long2IntArrayMap(java.util.Map<? extends java.lang.Long,? extends java.lang.Integer> map)
A Helper constructor that allows to create a Map with exactly the same values as the provided map.
|
| Modifier and Type | Method and Description |
|---|---|
int |
addTo(long key,
int value)
A Helper method to add a primitives together.
|
void |
clear() |
LongComparator |
comparator() |
int |
computeInt(long key,
LongIntUnaryOperator mappingFunction)
A Type Specific compute method to reduce boxing/unboxing
|
int |
computeIntIfAbsent(long key,
Long2IntFunction mappingFunction)
A Type Specific compute method to reduce boxing/unboxing
|
int |
computeIntIfPresent(long key,
LongIntUnaryOperator mappingFunction)
A Type Specific compute method to reduce boxing/unboxing
|
boolean |
containsKey(long key)
Type Specific method to reduce boxing/unboxing of values
|
boolean |
containsKey(java.lang.Object key) |
boolean |
containsValue(int value)
Type Specific method to reduce boxing/unboxing of values
|
boolean |
containsValue(java.lang.Object value) |
int |
firstIntValue()
A method to get the first Value of a Map.
|
long |
firstLongKey()
A method to get the first Key of a Map.
|
void |
forEach(LongIntConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
int |
getAndMoveToFirst(long key)
A Specific get method that allows to move teh given key/value int the first index.
|
int |
getAndMoveToLast(long key)
A Specific get method that allows to move teh given key/value int the last index.
|
int |
getInt(long key)
A Type Specific get method to reduce boxing/unboxing
|
int |
getOrDefault(long key,
int defaultValue)
A Type Specific getOrDefault method to reduce boxing/unboxing
|
Long2IntSortedMap |
headMap(long toKey)
A Type Specific HeadMap method to reduce boxing/unboxing
|
LongSet |
keySet() |
int |
lastIntValue()
A method to get the last Value of a Map.
|
long |
lastLongKey()
A method to get the last Key of a Map.
|
ObjectSortedSet<Long2IntMap.Entry> |
long2IntEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
void |
mergeAllInt(Long2IntMap m,
IntIntUnaryOperator mappingFunction)
A Bulk method for merging Maps.
|
int |
mergeInt(long key,
int value,
IntIntUnaryOperator mappingFunction)
A Type Specific merge method to reduce boxing/unboxing
|
boolean |
moveToFirst(long key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(long key)
A specific move method to move a given key/value to the last index.
|
long |
pollFirstLongKey()
A method to get and remove the first Key of a Map.
|
long |
pollLastLongKey()
A method to get and remove the last Key of a Map.
|
int |
put(long key,
int value)
Type Specific method to reduce boxing/unboxing of values
|
int |
putAndMoveToFirst(long key,
int value)
A customized put method that allows you to insert into the first index.
|
int |
putAndMoveToLast(long key,
int value)
A customized put method that allows you to insert into the last index.
|
int |
putIfAbsent(long key,
int value)
Type Specific method to reduce boxing/unboxing of values
|
int |
remLong(long key)
Type Specific remove function to reduce boxing/unboxing
|
int |
remLongOrDefault(long key,
int defaultValue)
Type-Specific Remove function with a default return value if wanted.
|
boolean |
remove(long key,
int value)
Type Specific remove function to reduce boxing/unboxing
|
java.lang.Integer |
remove(java.lang.Object key) |
boolean |
remove(java.lang.Object key,
java.lang.Object value) |
int |
replace(long key,
int value)
A Type Specific replace method to reduce boxing/unboxing replace an existing value
|
boolean |
replace(long key,
int oldValue,
int newValue)
A Type Specific replace method to replace an existing value
|
int |
size() |
Long2IntSortedMap |
subMap(long fromKey,
long toKey)
A Type Specific SubMap method to reduce boxing/unboxing
|
Long2IntSortedMap |
tailMap(long fromKey)
A Type Specific TailMap method to reduce boxing/unboxing
|
IntCollection |
values() |
addToAll, entrySet, equals, get, getDefaultReturnValue, getOrDefault, hashCode, putAll, putAll, putAll, putAllIfAbsent, replaceInts, replaceInts, setDefaultReturnValuefirstKey, headMap, lastKey, subMap, tailMapaddToAll, compute, computeIfAbsent, computeIfPresent, entrySet, forEach, get, getDefaultReturnValue, getOrDefault, merge, put, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, replace, replace, replaceAll, replaceInts, replaceInts, setDefaultReturnValueapplyAsIntpublic Long2IntArrayMap()
public Long2IntArrayMap(int minCapacity)
minCapacity - the minimum capacity the HashMap is allowed to be.java.lang.IllegalStateException - if the minimum capacity is negativepublic Long2IntArrayMap(java.lang.Long[] keys,
java.lang.Integer[] 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 lengthpublic Long2IntArrayMap(java.lang.Long[] keys,
java.lang.Integer[] values,
int length)
keys - the keys that should be put into the mapvalues - the values that should be put into the map.length - the amount of values that should be pulled from the arrayjava.lang.IllegalStateException - if the keys and values do not match in lengthpublic Long2IntArrayMap(long[] keys,
int[] 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 Long2IntArrayMap(long[] keys,
int[] values,
int length)
keys - the keys that should be put into the mapvalues - the values that should be put into the map.length - the amount of values that should be pulled from the arrayjava.lang.IllegalStateException - if the keys and values do not match in lenghtpublic Long2IntArrayMap(java.util.Map<? extends java.lang.Long,? extends java.lang.Integer> map)
map - the values that should be present in the mappublic Long2IntArrayMap(Long2IntMap map)
map - the values that should be present in the mappublic int put(long key,
int value)
Long2IntMapput in interface Long2IntMapkey - the key that should be inserted,value - the value that should be insertedMap.put(Object, Object)public int putIfAbsent(long key,
int value)
Long2IntMapputIfAbsent in interface Long2IntMapkey - the key that should be inserted,value - the value that should be insertedMap.putIfAbsent(Object, Object)public int addTo(long key,
int value)
Long2IntMapaddTo in interface Long2IntMapkey - the key that should be inserted,value - the value that should be inserted / addedpublic int putAndMoveToFirst(long key,
int value)
Long2IntSortedMapputAndMoveToFirst in interface Long2IntSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public int putAndMoveToLast(long key,
int value)
Long2IntSortedMapputAndMoveToLast in interface Long2IntSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(long key)
Long2IntSortedMapmoveToFirst in interface Long2IntSortedMapkey - that should be moved to the first indexpublic boolean moveToLast(long key)
Long2IntSortedMapmoveToLast in interface Long2IntSortedMapkey - that should be moved to the first lastpublic boolean containsKey(long key)
Long2IntMapcontainsKey in interface Long2IntMapcontainsKey in class AbstractLong2IntMapkey - element that is searched forpublic boolean containsValue(int value)
Long2IntMapcontainsValue in interface Long2IntMapcontainsValue in class AbstractLong2IntMapvalue - element that is searched forpublic boolean containsKey(java.lang.Object key)
containsKey in interface java.util.Map<java.lang.Long,java.lang.Integer>containsKey in interface Long2IntMapcontainsKey in class java.util.AbstractMap<java.lang.Long,java.lang.Integer>key - that is searched for.Map.containsKey(Object)public boolean containsValue(java.lang.Object value)
containsValue in interface java.util.Map<java.lang.Long,java.lang.Integer>containsValue in interface Long2IntMapcontainsValue in class java.util.AbstractMap<java.lang.Long,java.lang.Integer>value - that is searched for.Map.containsValue(Object)public int getInt(long key)
Long2IntMapgetInt in interface Long2IntFunctiongetInt in interface Long2IntMapkey - the key that is searched forpublic int getOrDefault(long key,
int defaultValue)
Long2IntMapgetOrDefault in interface Long2IntMapgetOrDefault in class AbstractLong2IntMapkey - the key that is searched fordefaultValue - the value that should be returned if the key is not presentpublic int getAndMoveToFirst(long key)
Long2IntSortedMapgetAndMoveToFirst in interface Long2IntSortedMapkey - that is searched forpublic int getAndMoveToLast(long key)
Long2IntSortedMapgetAndMoveToLast in interface Long2IntSortedMapkey - that is searched forpublic long firstLongKey()
Long2IntSortedMapfirstLongKey in interface Long2IntSortedMappublic long lastLongKey()
Long2IntSortedMaplastLongKey in interface Long2IntSortedMappublic int firstIntValue()
Long2IntSortedMapfirstIntValue in interface Long2IntSortedMappublic int lastIntValue()
Long2IntSortedMaplastIntValue in interface Long2IntSortedMappublic long pollFirstLongKey()
Long2IntSortedMappollFirstLongKey in interface Long2IntSortedMappublic long pollLastLongKey()
Long2IntSortedMappollLastLongKey in interface Long2IntSortedMappublic int remLong(long key)
Long2IntMapremLong in interface Long2IntMapkey - the element that should be removedpublic int remLongOrDefault(long key,
int defaultValue)
Long2IntMapremLongOrDefault in interface Long2IntMapkey - the element that should be removeddefaultValue - the value that should be returned if the entry doesn't existMap.remove(Object, Object)public boolean remove(long key,
int value)
Long2IntMapremove in interface Long2IntMapkey - the element that should be removedvalue - the expected value that should be foundMap.remove(Object, Object)public java.lang.Integer remove(java.lang.Object key)
remove in interface java.util.Map<java.lang.Long,java.lang.Integer>remove in interface Long2IntMapremove in class java.util.AbstractMap<java.lang.Long,java.lang.Integer>key - the element that should be removedMap.remove(Object)public boolean remove(java.lang.Object key,
java.lang.Object value)
remove in interface java.util.Map<java.lang.Long,java.lang.Integer>remove in interface Long2IntMapkey - the element that should be removedvalue - the expected value that should be foundMap.remove(Object, Object)public void forEach(LongIntConsumer action)
Long2IntMapforEach in interface Long2IntMapforEach in class AbstractLong2IntMapaction - processor of the values that are iterator overpublic LongSet keySet()
keySet in interface java.util.Map<java.lang.Long,java.lang.Integer>keySet in interface java.util.SortedMap<java.lang.Long,java.lang.Integer>keySet in interface Long2IntMapkeySet in interface Long2IntSortedMapkeySet in class AbstractLong2IntMappublic IntCollection values()
values in interface java.util.Map<java.lang.Long,java.lang.Integer>values in interface java.util.SortedMap<java.lang.Long,java.lang.Integer>values in interface Long2IntMapvalues in interface Long2IntSortedMapvalues in class AbstractLong2IntMappublic ObjectSortedSet<Long2IntMap.Entry> long2IntEntrySet()
Long2IntMaplong2IntEntrySet in interface Long2IntMappublic boolean replace(long key,
int oldValue,
int newValue)
Long2IntMapreplace in interface Long2IntMapreplace in class AbstractLong2IntMapkey - the element that should be searched foroldValue - the expected value to be replacednewValue - the value to replace the oldValue with.public int replace(long key,
int value)
Long2IntMapreplace in interface Long2IntMapreplace in class AbstractLong2IntMapkey - the element that should be searched forvalue - the value to replace with.public int computeInt(long key,
LongIntUnaryOperator mappingFunction)
Long2IntMapcomputeInt in interface Long2IntMapcomputeInt in class AbstractLong2IntMapkey - the key that should be computedmappingFunction - the operator that should generate the valuepublic int computeIntIfAbsent(long key,
Long2IntFunction mappingFunction)
Long2IntMapcomputeIntIfAbsent in interface Long2IntMapcomputeIntIfAbsent in class AbstractLong2IntMapkey - the key that should be computedmappingFunction - the operator that should generate the value if not presentpublic int computeIntIfPresent(long key,
LongIntUnaryOperator mappingFunction)
Long2IntMapcomputeIntIfPresent in interface Long2IntMapcomputeIntIfPresent in class AbstractLong2IntMapkey - the key that should be computedmappingFunction - the operator that should generate the value if presentpublic int mergeInt(long key,
int value,
IntIntUnaryOperator mappingFunction)
Long2IntMapmergeInt in interface Long2IntMapmergeInt in class AbstractLong2IntMapkey - the key that should be be searched forvalue - the value that should be merged withmappingFunction - the operator that should generate the new Valuepublic void mergeAllInt(Long2IntMap m, IntIntUnaryOperator mappingFunction)
Long2IntMapmergeAllInt in interface Long2IntMapmergeAllInt in class AbstractLong2IntMapm - the entries that should be bulk addedmappingFunction - the operator that should generate the new Valuepublic int size()
size in interface java.util.Map<java.lang.Long,java.lang.Integer>size in class java.util.AbstractMap<java.lang.Long,java.lang.Integer>public void clear()
clear in interface java.util.Map<java.lang.Long,java.lang.Integer>clear in class java.util.AbstractMap<java.lang.Long,java.lang.Integer>public LongComparator comparator()
comparator in interface java.util.SortedMap<java.lang.Long,java.lang.Integer>comparator in interface Long2IntSortedMappublic Long2IntSortedMap subMap(long fromKey, long toKey)
Long2IntSortedMapsubMap in interface Long2IntSortedMapfromKey - where the submap should starttoKey - where the subMap should endpublic Long2IntSortedMap headMap(long toKey)
Long2IntSortedMapheadMap in interface Long2IntSortedMaptoKey - where the headMap should endpublic Long2IntSortedMap tailMap(long fromKey)
Long2IntSortedMaptailMap in interface Long2IntSortedMapfromKey - where the TailMap should start