public class LongLongHashMap extends Object implements Cloneable, Iterable<LongLongHashMap.Entry>
IntObjectHashMap
,
IntLongHashMap
,
LongObjectHashMap
,
IntIntHashMap
,
LongIntHashMap
Modifier and Type | Class and Description |
---|---|
static class |
LongLongHashMap.Entry
An entry mapping a key to a value.
|
Constructor and Description |
---|
LongLongHashMap() |
LongLongHashMap(int initialCapacity) |
LongLongHashMap(int initialCapacity,
float loadFactor) |
Modifier and Type | Method and Description |
---|---|
int |
capacity()
Returns the current capacity (buckets) in this map.
|
void |
clear()
Clears the entire map.
|
Object |
clone()
Disclaimer: If the value type doesn't implement
clone() , only the reference is copied. |
boolean |
containsKey(long key) |
boolean |
containsValue(long value) |
long |
get(long key)
Returns the value to which the specified key is mapped,
or
getKeyNotFoundValue() if this map contains no mapping for the key. |
long |
getKeyNotFoundValue()
Returns the value which is returned if no value has been found for the specified key.
|
Iterator<LongLongHashMap.Entry> |
iterator()
Returns a new
Iterator . |
long |
put(long key,
long value)
Maps the key to the specified value.
|
void |
putAll(LongLongHashMap source)
Copies all of the mappings from the specified map to this map.
|
long |
remove(long key)
Removes the key-value mapping from this map.
|
long |
setKeyNotFoundValue(long newKeyNotFoundValue)
Sets the new key not found value.
|
int |
size()
Returns the current number of key-value mappings in this map.
|
String |
toString() |
StringBuilder |
toString(StringBuilder sb) |
public LongLongHashMap()
public LongLongHashMap(int initialCapacity)
public LongLongHashMap(int initialCapacity, float loadFactor)
public Object clone()
clone()
, only the reference is copied.
Note: Due to private fields we cannot implement a copy constructor, sorry.public boolean containsValue(long value)
public boolean containsKey(long key)
public long get(long key)
getKeyNotFoundValue()
if this map contains no mapping for the key.public long put(long key, long value)
getKeyNotFoundValue()
).public void putAll(LongLongHashMap source)
public long remove(long key)
getKeyNotFoundValue()
if no such mapping exists.public int size()
public int capacity()
public void clear()
public Iterator<LongLongHashMap.Entry> iterator()
Iterator
.
Note: this Iterator does not yet support removal of elements.iterator
in interface Iterable<LongLongHashMap.Entry>
public long setKeyNotFoundValue(long newKeyNotFoundValue)
get(long)
,
put(long, long)
public long getKeyNotFoundValue()
get(long)
,
put(long, long)
public StringBuilder toString(StringBuilder sb)
sb
- if null, a new StringBuilder is created