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

com.bertramlabs.plugins.karman.differential.DifferentialOutputStream Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package com.bertramlabs.plugins.karman.differential;

import java.io.IOException;
import java.io.OutputStream;

public class DifferentialOutputStream extends OutputStream {
    /**
     * Writes the specified byte to this output stream. The general
     * contract for {@code write} is that one byte is written
     * to the output stream. The byte to be written is the eight
     * low-order bits of the argument {@code b}. The 24
     * high-order bits of {@code b} are ignored.
     * 

* Subclasses of {@code OutputStream} must provide an * implementation for this method. * * @param b the {@code byte}. * @throws IOException if an I/O error occurs. In particular, * an {@code IOException} may be thrown if the * output stream has been closed. */ @Override public void write(int b) throws IOException { } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy