All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.io.Externalizable Maven / Gradle / Ivy

The newest version!
package java.io;

public interface Externalizable extends Serializable {
    /**
     * @throws IOException
     * @throws ClassNotFoundException
     */
    void readExternal(ObjectInput in) throws IOException, ClassNotFoundException;

    /**
     * @throws IOException
     */
    void writeExternal(ObjectOutput out) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy