name = $name; $this->field = $field; $this->metrics = $metrics; } /** * {@inheritdoc} */ public function getType() { return BucketInterface::TYPE_TERM; } /** * {@inheritdoc} * @codeCoverageIgnore */ public function getName() { return $this->name; } /** * {@inheritdoc} * @codeCoverageIgnore */ public function getField() { return $this->field; } /** * {@inheritdoc} * @codeCoverageIgnore */ public function getMetrics() { return $this->metrics; } }