The StringHashtable class of the com.ms.xml.util package adds objects to the hash table and gets values from the hash table.
public class StringHashtable { // Constructors public StringHashtable(int size); // Methods public Object put(String key, Object value); public Object get(String key); public Object get(char chars[], int offset, int length); }