getBbanLength method

int getBbanLength()

Implementation

int getBbanLength() {
  int total = 0;
  for (int i = 0; i < _entries.length; ++i) {
    total += _entries[i].getLength();
  }
  return total;
}