| Current File : /home/jvzmxxx/wiki1/vendor/ruflin/elastica/lib/Elastica/Aggregation/Percentiles.php |
<?php
namespace Elastica\Aggregation;
/**
* Class Percentiles.
*
* @link https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-metrics-percentile-aggregation.html
*/
class Percentiles extends AbstractSimpleAggregation
{
/**
* @param string $name the name of this aggregation
* @param string $field the field on which to perform this aggregation
*/
public function __construct($name, $field = null)
{
parent::__construct($name);
if (!is_null($field)) {
$this->setField($field);
}
}
/**
* Set compression parameter.
*
* @param float $value
*
* @return $this
*/
public function setCompression($value)
{
return $this->setParam('compression', (float) $value);
}
/**
* Set which percents must be returned.
*
* @param float[] $percents
*
* @return $this
*/
public function setPercents(array $percents)
{
return $this->setParam('percents', $percents);
}
/**
* Add yet another percent to result.
*
* @param float $percent
*
* @return $this
*/
public function addPercent($percent)
{
return $this->addParam('percents', (float) $percent);
}
}