jdk/src/share/classes/java/time/Ser.java
changeset 17474 8c100beabcc0
parent 15658 55b829ca2334
child 19841 15c8e97d6a14
equal deleted inserted replaced
17473:35cd9b3a98ff 17474:8c100beabcc0
    64 import java.io.StreamCorruptedException;
    64 import java.io.StreamCorruptedException;
    65 
    65 
    66 /**
    66 /**
    67  * The shared serialization delegate for this package.
    67  * The shared serialization delegate for this package.
    68  *
    68  *
    69  * <h3>Implementation notes</h3>
    69  * @implNote
    70  * This class wraps the object being serialized, and takes a byte representing the type of the class to
    70  * This class wraps the object being serialized, and takes a byte representing the type of the class to
    71  * be serialized.  This byte can also be used for versioning the serialization format.  In this case another
    71  * be serialized.  This byte can also be used for versioning the serialization format.  In this case another
    72  * byte flag would be used in order to specify an alternative version of the type format.
    72  * byte flag would be used in order to specify an alternative version of the type format.
    73  * For example {@code LOCAL_DATE_TYPE_VERSION_2 = 21}.
    73  * For example {@code LOCAL_DATE_TYPE_VERSION_2 = 21}.
    74  * <p>
    74  * <p>