Serialized Form
Package org.cojen.classfile |
writeReplace
Object writeReplace()
throws ObjectStreamException
- Throws:
ObjectStreamException
writeReplace
Object writeReplace()
throws ObjectStreamException
- Throws:
ObjectStreamException
mBeanClass
Class<T> mBeanClass
- Compare two object classes for equality.
mOrderByName
String mOrderByName
mUsingComparator
Comparator<T> mUsingComparator
mFlags
int mFlags
mCollator
Comparator<T> mCollator
mParent
BeanComparator mParent
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Reconstitute the IntHashMap instance from a stream (i.e.,
deserialize it).
- Throws:
IOException
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Save the state of the IntHashMap instance to a stream (i.e.,
serialize it).
- Serial Data:
- The capacity of the IntHashMap (the length of the
bucket array) is emitted (int), followed by the
size of the IntHashMap (the number of key-value
mappings), followed by the key (Object) and value (Object)
for each key-value mapping represented by the IntHashMap
The key-value mappings are emitted in no particular order.
- Throws:
IOException
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.
-
Copyright © 2004-2011 Brian S O'Neill. All Rights Reserved.