com.jogamp.common.util
Class LongLongHashMap

java.lang.Object
  extended by com.jogamp.common.util.LongLongHashMap
All Implemented Interfaces:
Cloneable, Iterable

public class LongLongHashMap
extends Object
implements Cloneable, Iterable

Fast HashMap for primitive data. Optimized for being GC friendly. Original code is based on the skorpios project released under new BSD license.

Author:
Michael Bien, Simon Goller, Sven Gothel
See Also:
IntObjectHashMap, IntLongHashMap, LongObjectHashMap, IntIntHashMap, LongIntHashMap

Nested Class Summary
static class LongLongHashMap.Entry
          An entry mapping a key to a value.
 
Constructor Summary
LongLongHashMap()
           
LongLongHashMap(int initialCapacity)
           
LongLongHashMap(int initialCapacity, float loadFactor)
           
 
Method Summary
 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()
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LongLongHashMap

public LongLongHashMap()

LongLongHashMap

public LongLongHashMap(int initialCapacity)

LongLongHashMap

public LongLongHashMap(int initialCapacity,
                       float loadFactor)
Method Detail

clone

public Object clone()
Disclaimer: If the value type doesn't implement clone(), only the reference is copied. Note: Due to private fields we cannot implement a copy constructor, sorry.

Overrides:
clone in class Object
Parameters:
source - the primitive hash map to copy

containsValue

public boolean containsValue(long value)

containsKey

public boolean containsKey(long key)

get

public 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.


put

public long put(long key,
                long value)
Maps the key to the specified value. If a mapping to this key already exists, the previous value will be returned (otherwise getKeyNotFoundValue()).


putAll

public void putAll(LongLongHashMap source)
Copies all of the mappings from the specified map to this map.


remove

public long remove(long key)
Removes the key-value mapping from this map. Returns the previously mapped value or getKeyNotFoundValue() if no such mapping exists.


size

public int size()
Returns the current number of key-value mappings in this map.


capacity

public int capacity()
Returns the current capacity (buckets) in this map.


clear

public void clear()
Clears the entire map. The size is 0 after this operation.


iterator

public Iterator<LongLongHashMap.Entry> iterator()
Returns a new Iterator. Note: this Iterator does not yet support removal of elements.

Specified by:
iterator in interface Iterable

setKeyNotFoundValue

public long setKeyNotFoundValue(long newKeyNotFoundValue)
Sets the new key not found value. For primitive types (int, long) the default is -1, for Object types, the default is null.

Returns:
the previous key not found value
See Also:
get(long), put(long, long)

getKeyNotFoundValue

public long getKeyNotFoundValue()
Returns the value which is returned if no value has been found for the specified key.

See Also:
get(long), put(long, long)

toString

public String toString()
Overrides:
toString in class Object