CONTENTS | PREV | NEXT | Java Object Serialization Specification |
The serialized form of an ObjectStreamClass instance depends on whether or not the Class object it represents is serializable, externalizable, or a dynamic proxy class.When an
ObjectStreamClass
instance that does not represent a dynamic proxy class is written to the stream, it writes the class name andserialVersionUID
, flags, and the number of fields. Depending on the class, additional information may be written:
- For non-serializable classes, the number of fields is always zero. Neither the serializable nor the externalizable flag bits are set.
- For serializable classes, the serializable flag is set, the number of fields counts the number of serializable fields and is followed by a descriptor for each serializable field. The descriptors are written in canonical order. The descriptors for primitive typed fields are written first sorted by field name followed by descriptors for the object typed fields sorted by field name. The names are sorted using
String.compareTo
. For details of the format, refer to Section 6.4, "Grammar for the Stream Format".- For externalizable classes, flags includes the externalizable flag, and the number of fields is always zero.
When an ObjectOutputStream serializes the ObjectStreamClass descriptor for a dynamic proxy class, as determined by passing its Class object to the isProxyClass method of java.lang.reflect.Proxy, it writes the number of interfaces that the dynamic proxy class implements, followed by the interface names. Interfaces are listed in the order that they are returned by invoking the getInterfaces method on the Class object of the dynamic proxy class.The serialized representations of ObjectStreamClass descriptors for dynamic proxy classes and non-dynamic proxy classes are differentiated through the use of different typecodes (TC_PROXYCLASSDESC and TC_CLASSDESC, respectively); for a more detailed specification of the grammar, see Section 6.4, "Grammar for the Stream Format".