Package org.eclipse.mat.collect
Class HashMapLongObject<E>
java.lang.Object
org.eclipse.mat.collect.HashMapLongObject<E>
- All Implemented Interfaces:
Serializable
A map from long to Object.
More efficient than a general map
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
An entry from the map -
Constructor Summary
ConstructorDescriptionCreate a map of default sizeHashMapLongObject
(int initialCapacity) Create a map of given capacity -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Remove all the existing mappings, leaving the capacity unchanged.boolean
containsKey
(long key) find if key is present in mapentries()
Iterate over all the map entriesget
(long key) Retrieve the value corresponding to the keylong[]
Get all the used keysObject[]
Get all the values corresponding to the used keys.<T> T[]
getAllValues
(T[] a) Get all the values corresponding to the used keys.boolean
isEmpty()
Is the map emptykeys()
Get a way of iterating over the keysAdd a mappingremove
(long key) Remove an mapping from the mapint
size()
The number of mappingsvalues()
Get a way of iterating over the values.
-
Constructor Details
-
HashMapLongObject
public HashMapLongObject()Create a map of default size -
HashMapLongObject
public HashMapLongObject(int initialCapacity) Create a map of given capacity- Parameters:
initialCapacity
- - can grow beyond this
-
-
Method Details
-
put
Add a mapping- Parameters:
key
- the keyvalue
- the corresponding value- Returns:
- the old value if an entry with the key already exists
-
remove
Remove an mapping from the map- Parameters:
key
- the key to remove- Returns:
- the old value if the key was found, otherwise null
-
containsKey
public boolean containsKey(long key) find if key is present in map- Parameters:
key
- the key- Returns:
- true if the key was found
-
get
Retrieve the value corresponding to the key- Parameters:
key
- the key- Returns:
- the value, or null if the key is not found
-
getAllKeys
public long[] getAllKeys()Get all the used keys- Returns:
- an array of the used keys
-
getAllValues
Get all the values corresponding to the used keys. Duplicate values are possible if they correspond to different keys. Consider usinggetAllValues(Object[])
for better type safety.- Returns:
- an array of the used values
-
getAllValues
public <T> T[] getAllValues(T[] a) Get all the values corresponding to the used keys. Duplicate values are possible if they correspond to different keys.- Type Parameters:
T
- the type of values held in this map.- Parameters:
a
- an array of the right type for the output, which will be used if it is big enough, otherwise another array of this type will be allocated.- Returns:
- an array of the used values
-
size
public int size()The number of mappings- Returns:
- the size of the map
-
isEmpty
public boolean isEmpty()Is the map empty- Returns:
- true if no current mappings
-
clear
public void clear()Remove all the existing mappings, leaving the capacity unchanged. -
keys
Get a way of iterating over the keys- Returns:
- an iterator over the keys
-
values
Get a way of iterating over the values.- Returns:
- an iterator over the values
-
entries
Iterate over all the map entries- Returns:
- the iterator over the entries
-