1 | <?php |
||
14 | class DerivativeAggregation extends AbstractPipelineAggregation |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | private $format; |
||
20 | |||
21 | /** |
||
22 | * @param string $name |
||
23 | * @param string $bucketsPath |
||
24 | * @param string $gapPolicy |
||
25 | * @param string $format |
||
26 | */ |
||
27 | public function __construct($name, $bucketsPath, $gapPolicy = null, $format = null) |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getFormat() |
||
42 | |||
43 | /** |
||
44 | * @param string $format |
||
45 | */ |
||
46 | public function setFormat($format) |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function getArray() |
||
63 | |||
64 | /** |
||
65 | * {@inheritdoc} |
||
66 | */ |
||
67 | public function getPipelineFamily() |
||
71 | |||
72 | /** |
||
73 | * {@inheritdoc} |
||
74 | */ |
||
75 | public function getType() |
||
79 | } |
||
80 |