Java Utililty Methods Byte Array Value Set

List of utility methods to do Byte Array Value Set

Description

The list of methods to do Byte Array Value Set are organized into topic(s).

Method

byte[]setbyte(byte dest[], int offset, byte b)
setbyte
dest[offset] = b;
return dest;
voidsetByte(byte value, byte[] bytes, int offset)
set Byte
bytes[offset] = value;
voidsetByte(byte[] buffer, int index, int val)
set Byte
buffer[index] = (byte) (val);
byte[]setByte(byte[] byteArray, int offset, byte b)
This method sets a byte in a byte array at a certain offset in the byte array.
byteArray[offset] = b;
return byteArray;
byte[]setbytes(byte dest[], int offset, byte src[])
setbytes
System.arraycopy(src, 0, dest, offset, src.length);
return dest;
voidsetBytes(byte[] destination, int offset, byte[] source)
Set a portion of the byte array.
for (int i = 0; i < source.length; i++) {
    destination[offset + i] = source[i];
voidsetBytes(byte[] setTo, int startTo, byte[] setFrom, int startFrom, int len)
set Bytes
for (int i = 0; i < len; i++) {
    setTo[startTo + i] = setFrom[startFrom + i];
voidsetBytes(final byte[] dest, final byte[] data, final int offset, int length)
add a bunch of bytes to the byte array with offset
if (offset + length > dest.length) {
    return;
for (int i = 0; i < length; i++) {
    dest[offset + i] = data[i];
voidsetBytes(int value, int offset, byte[] bytes)
set Bytes
bytes[offset] = getByte0B(value);
bytes[++offset] = getByte1B(value);
bytes[++offset] = getByte2B(value);
bytes[++offset] = getByte3B(value);
voidsetBytes(long value, int offset, byte[] bytes)
set Bytes
bytes[offset] = getByte0B(value);
bytes[++offset] = getByte1B(value);
bytes[++offset] = getByte2B(value);
bytes[++offset] = getByte3B(value);
bytes[++offset] = getByte4B(value);
bytes[++offset] = getByte5B(value);
bytes[++offset] = getByte6B(value);
bytes[++offset] = getByte7B(value);
...