V - type of the value instance.public class LongMap<V> extends Object
| Constructor and Description |
|---|
LongMap()
Initialize an empty LongMap.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(long key) |
V |
get(long key) |
V |
put(long key,
V value) |
V |
remove(long key) |
public boolean containsKey(long key)
key - the key to find.true if key is present in the map.public V get(long key)
key - the key to find.null.public V remove(long key)
key - key to remove from the map.null.Copyright © 2017 Eclipse JGit Project. All rights reserved.