Methods Summary |
---|
public byte[] | getData()Gets the byte array of this IIOByteBuffer.
return data;
|
public int | getLength()Gets the length in the array which will be used.
return length;
|
public int | getOffset()Gets the offset of this IIOByteBuffer.
return offset;
|
public void | setData(byte[] data)Sets the new data array to this IIOByteBuffer object.
this.data = data;
|
public void | setLength(int length)Sets the length of data which will be used.
this.length = length;
|
public void | setOffset(int offset)Sets the offset in the data array of this IIOByteBuffer.
this.offset = offset;
|