Package java.util
Class Hashtable
Description:
Returns the value to which the specified key is mapped in this hashtable.
Example
Hashtable hashTable = new Hashtable();
hashTable.put("1", "h");
hashTable.put("2", "a");
hashTable.put("3", "s");
hashTable.put("4", "h");
Logger.log("hashTable: " + hashTable.get("3"));
The example above writes the third element to the logger.