readByte method

int readByte()

read one byte from data

Implementation

int readByte() {
  _currentPosition++;
  return data[_currentPosition - 1];
}