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

com.upokecenter.util.IByteWriter Maven / Gradle / Ivy

The newest version!
package com.upokecenter.util;
/*
Written by Peter O. in 2014.
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
If you like this, you should donate to Peter O.
at: http://upokecenter.dreamhosters.com/articles/donate-now-2/
 */

    /**
     * A generic interface for writing bytes of data.
     */
  public interface IByteWriter {
    /**
     * Writes an 8-bit byte to a data source.
     * @param b Byte to write to the data source. Only the lower 8 bits of this
     * value are used.
     */
    void write(int b);
  }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy