public class TUnmodifiableIntLongMap extends java.lang.Object implements TIntLongMap, java.io.Serializable
| Constructor and Description |
|---|
TUnmodifiableIntLongMap(TIntLongMap m) |
| Modifier and Type | Method and Description |
|---|---|
long |
adjustOrPutValue(int key,
long adjust_amount,
long put_amount)
Adjusts the primitive value mapped to the key if the key is present in the map.
|
boolean |
adjustValue(int key,
long amount)
Adjusts the primitive value mapped to key.
|
void |
clear()
Empties the map.
|
boolean |
containsKey(int key)
Checks for the present of key in the keys of the map.
|
boolean |
containsValue(long val)
Checks for the presence of val in the values of the map.
|
boolean |
equals(java.lang.Object o) |
boolean |
forEachEntry(TIntLongProcedure procedure)
Executes procedure for each key/value entry in the
map.
|
boolean |
forEachKey(TIntProcedure procedure)
Executes procedure for each key in the map.
|
boolean |
forEachValue(TLongProcedure procedure)
Executes procedure for each value in the map.
|
long |
get(int key)
Retrieves the value for key.
|
int |
getNoEntryKey()
Returns the value that will be returned from
TIntLongMap.get(int) or TIntLongMap.put(int, long) if no
entry exists for a given key. |
long |
getNoEntryValue()
Returns the value that will be returned from
TIntLongMap.get(int) or TIntLongMap.put(int, long) if no
entry exists for a given key. |
int |
hashCode() |
boolean |
increment(int key)
Increments the primitive value mapped to key by 1
|
boolean |
isEmpty()
Returns true if this map contains no key-value mappings.
|
TIntLongIterator |
iterator() |
int[] |
keys()
Returns the keys of the map as an array of int values.
|
int[] |
keys(int[] array)
Returns the keys of the map.
|
TIntSet |
keySet()
Returns the keys of the map as a TIntSet
|
long |
put(int key,
long value)
Inserts a key/value pair into the map.
|
void |
putAll(java.util.Map<? extends java.lang.Integer,? extends java.lang.Long> map)
Put all the entries from the given Map into this map.
|
void |
putAll(TIntLongMap m)
Put all the entries from the given map into this map.
|
long |
putIfAbsent(int key,
long value)
Inserts a key/value pair into the map if the specified key is not already
associated with a value.
|
long |
remove(int key)
Deletes a key/value pair from the map.
|
boolean |
retainEntries(TIntLongProcedure procedure)
Retains only those entries in the map for which the procedure
returns a true value.
|
int |
size()
Returns an int value that is the number of elements in the map.
|
java.lang.String |
toString() |
void |
transformValues(TLongFunction function)
Transform the values in this map using function.
|
TLongCollection |
valueCollection()
Returns the values of the map as a TLongCollection
|
long[] |
values()
Returns the values of the map as an array of #e# values.
|
long[] |
values(long[] array)
Returns the values of the map using an existing array.
|
public TUnmodifiableIntLongMap(TIntLongMap m)
public int size()
TIntLongMapsize in interface TIntLongMappublic boolean isEmpty()
TIntLongMapisEmpty in interface TIntLongMappublic boolean containsKey(int key)
TIntLongMapcontainsKey in interface TIntLongMappublic boolean containsValue(long val)
TIntLongMapcontainsValue in interface TIntLongMappublic long get(int key)
TIntLongMapget in interface TIntLongMapTIntLongMap.getNoEntryValue()).public long put(int key,
long value)
TIntLongMapput in interface TIntLongMapTIntLongMap.getNoEntryValue()).public long remove(int key)
TIntLongMapremove in interface TIntLongMapkey - an int valueTIntLongMap.getNoEntryValue()).public void putAll(TIntLongMap m)
TIntLongMapputAll in interface TIntLongMapm - The map from which entries will be obtained to put into this map.public void putAll(java.util.Map<? extends java.lang.Integer,? extends java.lang.Long> map)
TIntLongMapputAll in interface TIntLongMapmap - The Map from which entries will be obtained to put into this map.public void clear()
TIntLongMapclear in interface TIntLongMappublic TIntSet keySet()
TIntLongMapkeySet in interface TIntLongMappublic int[] keys()
TIntLongMapkeys in interface TIntLongMappublic int[] keys(int[] array)
TIntLongMapkeys in interface TIntLongMaparray - the array into which the elements of the list are to be stored,
if it is big enough; otherwise, a new array of the same type is
allocated for this purpose.public TLongCollection valueCollection()
TIntLongMapvalueCollection in interface TIntLongMappublic long[] values()
TIntLongMapvalues in interface TIntLongMappublic long[] values(long[] array)
TIntLongMapvalues in interface TIntLongMaparray - the array into which the elements of the list are to be stored,
if it is big enough; otherwise, a new array of the same type is
allocated for this purpose.public boolean equals(java.lang.Object o)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Objectpublic int getNoEntryKey()
TIntLongMapTIntLongMap.get(int) or TIntLongMap.put(int, long) if no
entry exists for a given key. The default value is generally zero, but can be
configured during construction of the collection.getNoEntryKey in interface TIntLongMappublic long getNoEntryValue()
TIntLongMapTIntLongMap.get(int) or TIntLongMap.put(int, long) if no
entry exists for a given key. The default value is generally zero, but can be
configured during construction of the collection.getNoEntryValue in interface TIntLongMappublic boolean forEachKey(TIntProcedure procedure)
TIntLongMapforEachKey in interface TIntLongMapprocedure - a TIntProcedure valuepublic boolean forEachValue(TLongProcedure procedure)
TIntLongMapforEachValue in interface TIntLongMapprocedure - a T#F#Procedure valuepublic boolean forEachEntry(TIntLongProcedure procedure)
TIntLongMapforEachEntry in interface TIntLongMapprocedure - a TOIntLongProcedure valuepublic TIntLongIterator iterator()
iterator in interface TIntLongMappublic long putIfAbsent(int key,
long value)
TIntLongMapputIfAbsent in interface TIntLongMapTIntLongMap.getNoEntryValue()).public void transformValues(TLongFunction function)
TIntLongMaptransformValues in interface TIntLongMapfunction - a TLongFunction valuepublic boolean retainEntries(TIntLongProcedure procedure)
TIntLongMapretainEntries in interface TIntLongMapprocedure - determines which entries to keeppublic boolean increment(int key)
TIntLongMapincrement in interface TIntLongMapkey - the key of the value to incrementpublic boolean adjustValue(int key,
long amount)
TIntLongMapadjustValue in interface TIntLongMapkey - the key of the value to incrementamount - the amount to adjust the value by.public long adjustOrPutValue(int key,
long adjust_amount,
long put_amount)
TIntLongMapadjustOrPutValue in interface TIntLongMapkey - the key of the value to incrementadjust_amount - the amount to adjust the value byput_amount - the value put into the map if the key is not present