relop
Class HashTableDup

java.lang.Object
  extended by java.util.Dictionary<K,V>
      extended by java.util.Hashtable
          extended by relop.HashTableDup
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, java.util.Map

 class HashTableDup
extends java.util.Hashtable

A extension to Java's hash table that allows duplicate keys. http://mindprod.com/jgloss/hashtable.html


Constructor Summary
HashTableDup()
           
 
Method Summary
 void add(SearchKey key, Tuple value)
          Maps the specified key to the specified value in this hashtable.
 Tuple[] getAll(SearchKey key)
          Returns the values to which the specified key is mapped in this hashtable.
 
Methods inherited from class java.util.Hashtable
clear, clone, contains, containsKey, containsValue, elements, entrySet, equals, get, hashCode, isEmpty, keys, keySet, put, putAll, rehash, remove, size, toString, values
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HashTableDup

HashTableDup()
Method Detail

add

public void add(SearchKey key,
                Tuple value)
Maps the specified key to the specified value in this hashtable.


getAll

public Tuple[] getAll(SearchKey key)
Returns the values to which the specified key is mapped in this hashtable.