Serialized Form
Package com.sun.jersey.api.client |
Package com.sun.jersey.api.representation |
serialVersionUID: 2572713614319991270L
Package com.sun.jersey.core.header |
Package com.sun.jersey.core.spi.scanning |
Package com.sun.jersey.core.util |
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Reconstitute the HashMap instance from a stream (i.e.,
deserialize it).
- Throws:
IOException
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Save the state of the HashMap instance to a stream (i.e.,
serialize it).
- Serial Data:
- The capacity of the HashMap (the length of the
bucket array) is emitted (int), followed by the
size of the HashMap (the number of key-value
mappings), followed by the key (Object) and value (Object)
for each key-value mapping represented by the HashMap
The key-value mappings are emitted in the order that they
are returned by entrySet().iterator().
- Throws:
IOException
threshold
int threshold
- The next size value at which to resize (capacity * load factor).
-
loadFactor
float loadFactor
- The load factor for the hash table.
-
keyComparator
KeyComparator<K> keyComparator
serialVersionUID: 3801124242820219131L
accessOrder
boolean accessOrder
- The iteration ordering method for this linked hash map: true
for access-order, false for insertion-order.
-
serialVersionUID: -6052320403766368902L
Package com.sun.jersey.spi.inject |
messages
List<E> messages
Package com.sun.jersey.spi.service |
Copyright © 2011 Oracle Corporation. All Rights Reserved.