Interface ByteMatrix

    • Method Detail

      • getByte

        byte getByte​(long... coordinates)
        Returns a byte representation of an entry in the matrix. The stored value will be converted to a byte as good as possible.
        Parameters:
        coordinates - location of the entry
        Returns:
        a byte representation of the entry @
      • setByte

        void setByte​(byte value,
                     long... coordinates)
        Sets an entry in the matrix to a byte value. If the matrix cannot store byte values, the value will be represented as good as possible.
        Parameters:
        value - byte value
        coordinates - location of the entry @