getLength method

int getLength()

Implementation

int getLength() {
  return totalCount > data.length ? data.length + 1 : data.length;
}