name = $name; $this->field = $field; $this->metrics = $metrics; $this->ranges = $ranges; } /** * {@inheritdoc} */ public function getType() { return BucketInterface::TYPE_RANGE; } /** * {@inheritdoc} * @codeCoverageIgnore */ public function getName() { return $this->name; } /** * {@inheritdoc} * @codeCoverageIgnore */ public function getField() { return $this->field; } /** * {@inheritdoc} * @codeCoverageIgnore */ public function getMetrics() { return $this->metrics; } /** * Get Ranges * * @return Range[] * @codeCoverageIgnore */ public function getRanges() { return $this->ranges; } }