Serialized Form
Package com.intrinsyc.janet |
password
java.lang.String password
username
java.lang.String username
readObject
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException
- readObject is called to restore the state of the JHashtable from
a stream. Only the keys and values are serialized since the
hash values may be different when the contents are restored.
Read count elements and insert into the JHashtable.
writeObject
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException
- WriteObject is called to save the state of the JHashtable to a stream.
Only the keys and values are serialized since the hash values may be
different when the contents are restored.
iterate over the contents and write out the keys and values.
threshold
int threshold
- Rehashes the table when count exceeds this threshold.
loadFactor
float loadFactor
- The load factor for the JHashtable.