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

java.io.ObjectOutput Maven / Gradle / Ivy

The newest version!
package java.io;

public interface ObjectOutput extends DataOutput {
	/**
	 * @throws IOException
	 */
	void close() throws IOException;

	/**
	 * @throws IOException
	 */
    void flush() throws IOException;

    /**
     * @throws IOException
     */
    void write(int b) throws IOException;

    /**
     * @throws IOException
     */
    void write(byte[] b) throws IOException;

    /**
     * @throws IOException
     */
    void write(byte[] b, int off, int len) throws IOException;

    /**
     * @throws IOException
     */
    void writeObject(Object obj) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy