readInt method

int readInt()

Converts four bytes from the read buffer to a signed int.

The byte order is big-endian.

@return the int value.

Implementation

int readInt() {
  this._bufferPosition += 4;
  return Deserializer.getInt(this._bufferData, this._bufferPosition - 4);
}