Serialized Form

Package freemarker.ext.util

Class freemarker.ext.util.IdentityHashMap extends AbstractMap implements Serializable

serialVersionUID: 362498820763181265L

Serialization Methods

writeObject

private void writeObject(java.io.ObjectOutputStream s)
            throws java.io.IOException
Save the state of the IdentityHashMap instance to a stream (i.e., serialize it).

readObject

private void readObject(java.io.ObjectInputStream s)
            throws java.io.IOException,
                   ClassNotFoundException
Reconstitute the IdentityHashMap instance from a stream (i.e., deserialize it).

Serialized Fields

threshold

 int threshold
The table is rehashed when its size exceeds this threshold. (The value of this field is (int)(capacity * loadFactor).)

loadFactor

 float loadFactor
The load factor for the hashtable.