C D E G I K P R S

C

clear() - Method in class com.equitysoft.hashstore.DiskHashtable
Removes all the keys and values in the table.
containsKey(Object) - Method in class com.equitysoft.hashstore.DiskHashtable
Returns true true if the hashtable contains the given key otherwise false.
containsKey(Object) - Method in class com.equitysoft.hashstore.SyncDiskHashtable
Returns true if the key exists in the hashtable otherwise false.

D

deleteTable() - Method in class com.equitysoft.hashstore.DiskHashtable
Deletes all the files and directories associated with the table and leaves nothing behind.
DiskHashtable - class com.equitysoft.hashstore.DiskHashtable.
This class implements a hashtable on disk.
DiskHashtable(File) - Constructor for class com.equitysoft.hashstore.DiskHashtable
 
DuplicateDiskHashtable - class com.equitysoft.hashstore.DuplicateDiskHashtable.
This class is an extension of DiskHashTable that allows duplicate (ie.
DuplicateDiskHashtable(File) - Constructor for class com.equitysoft.hashstore.DuplicateDiskHashtable
 

E

elements() - Method in class com.equitysoft.hashstore.DiskHashtable
Returns an Enumeration of all the values in the hashtable.

G

get(Object) - Method in class com.equitysoft.hashstore.DiskHashtable
Gets the object associated with the key.
get(Object) - Method in class com.equitysoft.hashstore.SyncDiskHashtable
Retrieves the object associated with the key in the hashtable.
get(Object) - Method in class com.equitysoft.hashstore.DuplicateDiskHashtable
Gets the object associated with the the first instance of the key.
get(Object) - Method in class com.equitysoft.hashstore.SyncDuplicateDiskHashtable
Gets the value associated with first occurence of the key or null if the key is not found.
getCurrentKey() - Method in class com.equitysoft.hashstore.DuplicateDiskHashtable
Returns the current key value or null if none is set.
getCurrentValue() - Method in class com.equitysoft.hashstore.DuplicateDiskHashtable
Returns the value associated with the current key value or null if no current key is set.
getNext() - Method in class com.equitysoft.hashstore.DuplicateDiskHashtable
This method can be repeatedly called after invoking get in order to retrieve all entries in the tabel with the same key.
getNext() - Method in class com.equitysoft.hashstore.SyncDuplicateDiskHashtable
Gets the next value ssociated with the current key.

I

isEmpty() - Method in class com.equitysoft.hashstore.DiskHashtable
Returns true if the table contains at least one entry.

K

keys() - Method in class com.equitysoft.hashstore.DiskHashtable
Returns an Enumeration of all the keys in the hashtable.

P

put(Object, Object) - Method in class com.equitysoft.hashstore.DiskHashtable
Puts the specified key and value pair into the table and returns the original value for the key if the key already exists.
put(Object, Object) - Method in class com.equitysoft.hashstore.SyncDiskHashtable
Stores the key and value pair in the hashtable.
put(Object, Object) - Method in class com.equitysoft.hashstore.DuplicateDiskHashtable
Puts the specified key and value pair into the table even though the key value may already exist in the table.
put(Object, Object) - Method in class com.equitysoft.hashstore.SyncDuplicateDiskHashtable
Puts the key and value pair into the table.

R

remove(Object) - Method in class com.equitysoft.hashstore.DiskHashtable
Removes the specified key from the hashtable
remove(Object) - Method in class com.equitysoft.hashstore.SyncDiskHashtable
Removes the key and value pair in the hashtable associated with the given key.
remove(Object) - Method in class com.equitysoft.hashstore.DuplicateDiskHashtable
Remove all entries that match the given key.
remove(Object) - Method in class com.equitysoft.hashstore.SyncDuplicateDiskHashtable
Removes all entries with the specified key value.
removeCurrent() - Method in class com.equitysoft.hashstore.DuplicateDiskHashtable
Removes the current entry in the table.
removeCurrent() - Method in class com.equitysoft.hashstore.SyncDuplicateDiskHashtable
Removes the current entry.

S

size() - Method in class com.equitysoft.hashstore.DiskHashtable
Returns the number of entries in the hashtable.
SyncDiskHashtable - class com.equitysoft.hashstore.SyncDiskHashtable.
This class is a convenience class that is a synchronized version of DiskHashtable.
SyncDiskHashtable(File) - Constructor for class com.equitysoft.hashstore.SyncDiskHashtable
 
SyncDuplicateDiskHashtable - class com.equitysoft.hashstore.SyncDuplicateDiskHashtable.
This a convenience class that is an extension of DuplicateDiskHashTable providing all methods as synchronized
SyncDuplicateDiskHashtable(File) - Constructor for class com.equitysoft.hashstore.SyncDuplicateDiskHashtable
 

C D E G I K P R S