getByte method

int getByte()

Get a byte, should be equal for all endians

@return the byte value

Implementation

int getByte() {
  return data.get(position++);
}