getBounds method

Object getBounds()
override

Gets the bounds of this node

@return the object representing bounds in this index

Implementation

Object getBounds() {
  if (bounds == null) {
    bounds = computeBounds();
  }
  return bounds!;
}