aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/tests/qps/generated_code/Grpc/Testing/HistogramData.php
blob: 136eac75e2895a9da7e30fd190138be3c627f717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: src/proto/grpc/testing/stats.proto

namespace Grpc\Testing;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * Histogram data based on grpc/support/histogram.c
 *
 * Generated from protobuf message <code>grpc.testing.HistogramData</code>
 */
class HistogramData extends \Google\Protobuf\Internal\Message
{
    /**
     * Generated from protobuf field <code>repeated uint32 bucket = 1;</code>
     */
    private $bucket;
    /**
     * Generated from protobuf field <code>double min_seen = 2;</code>
     */
    private $min_seen = 0.0;
    /**
     * Generated from protobuf field <code>double max_seen = 3;</code>
     */
    private $max_seen = 0.0;
    /**
     * Generated from protobuf field <code>double sum = 4;</code>
     */
    private $sum = 0.0;
    /**
     * Generated from protobuf field <code>double sum_of_squares = 5;</code>
     */
    private $sum_of_squares = 0.0;
    /**
     * Generated from protobuf field <code>double count = 6;</code>
     */
    private $count = 0.0;

    public function __construct() {
        \GPBMetadata\Src\Proto\Grpc\Testing\Stats::initOnce();
        parent::__construct();
    }

    /**
     * Generated from protobuf field <code>repeated uint32 bucket = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getBucket()
    {
        return $this->bucket;
    }

    /**
     * Generated from protobuf field <code>repeated uint32 bucket = 1;</code>
     * @param int[]|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setBucket($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::UINT32);
        $this->bucket = $arr;

        return $this;
    }

    /**
     * Generated from protobuf field <code>double min_seen = 2;</code>
     * @return float
     */
    public function getMinSeen()
    {
        return $this->min_seen;
    }

    /**
     * Generated from protobuf field <code>double min_seen = 2;</code>
     * @param float $var
     * @return $this
     */
    public function setMinSeen($var)
    {
        GPBUtil::checkDouble($var);
        $this->min_seen = $var;

        return $this;
    }

    /**
     * Generated from protobuf field <code>double max_seen = 3;</code>
     * @return float
     */
    public function getMaxSeen()
    {
        return $this->max_seen;
    }

    /**
     * Generated from protobuf field <code>double max_seen = 3;</code>
     * @param float $var
     * @return $this
     */
    public function setMaxSeen($var)
    {
        GPBUtil::checkDouble($var);
        $this->max_seen = $var;

        return $this;
    }

    /**
     * Generated from protobuf field <code>double sum = 4;</code>
     * @return float
     */
    public function getSum()
    {
        return $this->sum;
    }

    /**
     * Generated from protobuf field <code>double sum = 4;</code>
     * @param float $var
     * @return $this
     */
    public function setSum($var)
    {
        GPBUtil::checkDouble($var);
        $this->sum = $var;

        return $this;
    }

    /**
     * Generated from protobuf field <code>double sum_of_squares = 5;</code>
     * @return float
     */
    public function getSumOfSquares()
    {
        return $this->sum_of_squares;
    }

    /**
     * Generated from protobuf field <code>double sum_of_squares = 5;</code>
     * @param float $var
     * @return $this
     */
    public function setSumOfSquares($var)
    {
        GPBUtil::checkDouble($var);
        $this->sum_of_squares = $var;

        return $this;
    }

    /**
     * Generated from protobuf field <code>double count = 6;</code>
     * @return float
     */
    public function getCount()
    {
        return $this->count;
    }

    /**
     * Generated from protobuf field <code>double count = 6;</code>
     * @param float $var
     * @return $this
     */
    public function setCount($var)
    {
        GPBUtil::checkDouble($var);
        $this->count = $var;

        return $this;
    }

}