edu.ksu.cis.projects.trove.custom
Class LongObjectTable<V>

java.lang.Object
  extended by edu.ksu.cis.projects.trove.custom.LongObjectTable<V>

public class LongObjectTable<V>
extends Object


Constructor Summary
LongObjectTable()
           
LongObjectTable(int initialCapacity)
           
 
Method Summary
 void clear()
           
 LongObjectTable<V> clone()
           
 void compact()
           
 boolean contains(long val)
           
 boolean containsKey(long key)
           
 boolean containsValue(V val)
           
 void ensureCapacity(int desiredCapacity)
           
 boolean equals(Object other)
           
 V get(long key)
           
 V[] getValues(Class<V> componentType)
           
 V[] getValues(V[] a)
           
 int hashCode()
           
 boolean isEmpty()
           
 long[] keys()
           
 V put(long key, V value)
           
 V remove(long key)
           
 int size()
           
 void trimToSize()
           
 Set<V> valueSet(boolean coDomainIsComparable)
           
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LongObjectTable

public LongObjectTable()

LongObjectTable

public LongObjectTable(int initialCapacity)
Method Detail

valueSet

public Set<V> valueSet(boolean coDomainIsComparable)

clear

public void clear()

clone

public LongObjectTable<V> clone()
Overrides:
clone in class Object

containsKey

public boolean containsKey(long key)

containsValue

public boolean containsValue(V val)

equals

public boolean equals(Object other)
Overrides:
equals in class Object

get

public V get(long key)

getValues

public V[] getValues(Class<V> componentType)

getValues

public V[] getValues(V[] a)

hashCode

public int hashCode()
Overrides:
hashCode in class Object

keys

public long[] keys()

put

public V put(long key,
             V value)

remove

public V remove(long key)

contains

public boolean contains(long val)

compact

public void compact()

ensureCapacity

public void ensureCapacity(int desiredCapacity)

isEmpty

public boolean isEmpty()

size

public int size()

trimToSize

public void trimToSize()