Interface MutableByteProvider

    • Method Detail

      • writeByte

        void writeByte​(long index,
                       byte value)
                throws java.io.IOException
        Writes a byte at the specified index.
        Parameters:
        index - the index to write the byte
        value - the value to write at the specified index
        Throws:
        java.io.IOException - if an I/O error occurs
      • writeBytes

        void writeBytes​(long index,
                        byte[] values)
                 throws java.io.IOException
        Writes a byte array at the specified index.
        Parameters:
        index - the index to write the byte array
        values - the values to write at the specified index
        Throws:
        java.io.IOException - if an I/O error occurs