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

java.io.OutputStream Maven / Gradle / Ivy

The newest version!
package java.io;

public abstract class OutputStream {
    public OutputStream() {}

    /**
     * @throws IOException
     */
    public void close() throws IOException {}

    /**
     * @throws IOException
     */
    public void flush() throws IOException {}

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

    /**
     * @throws IOException
     */
    public void write(byte[] b) throws IOException {}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy