Language Reference Guide : 4. System Classes : HashTable Class
 
Share this page                  
HashTable Class
The HashTable is an abstract class that defines attributes and methods available to all its subclasses. It enables object references to be stored in a keyed table for later lookup by key. The HashTable class uses hashing algorithms to perform the work of storing and finding objects. It uses a fixed set of buckets. Each bucket contains an overflow chain of elements.
The Setup method specifies optional settings for the HashTable. It can be used once before using any of the other HashTable methods. If any other HashTable methods are invoked without using the Setup method before, the HashTable will be set up with default values. Although the methods belong to the HashTable class, they are detailed in IntegerHashTable Class and StringHashTable Class, which actually implement the methods.
Inherits From
Object Class
Inherited By
IntegerHashTable
StringHashTable
Attributes
AllowSubclassObjects
AutoResizeThreshold
CompareKeyFunction
Entries
HashKeyFunction
ObjectClass
ObjectCount
Size
UniqueKey
Methods
GetEntries
LoadEntries
Note:  The following methods are detailed in IntegerHashTable Class and StringHashTable Class, which actually implement the methods.
Clear
Contains
Find
FindAll
InsertObject
RemoveObject
Setup