dataflow
v1b3
|
#include <integer_mean.h>
Public Member Functions | |
IntegerMean (const Json::Value &storage) | |
IntegerMean (Json::Value *storage) | |
virtual | ~IntegerMean () |
const StringPiece | GetTypeName () const |
bool | has_count () const |
void | clear_count () |
const SplitInt64 | get_count () const |
SplitInt64 | mutable_count () |
bool | has_sum () const |
void | clear_sum () |
const SplitInt64 | get_sum () const |
SplitInt64 | mutable_sum () |
Static Public Member Functions | |
static IntegerMean * | New () |
A representation of an integer mean metric contribution.
|
explicit |
Standard constructor for an immutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
explicit |
Standard constructor for a mutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
virtual |
Standard destructor.
|
inline |
Clears the 'count
' attribute.
|
inline |
Clears the 'sum
' attribute.
const SplitInt64 google_dataflow_api::IntegerMean::get_count | ( | ) | const |
Get a reference to the value of the 'count
' attribute.
const SplitInt64 google_dataflow_api::IntegerMean::get_sum | ( | ) | const |
Get a reference to the value of the 'sum
' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'count
' attribute was set.
count
' attribute was set.
|
inline |
Determine if the 'sum
' attribute was set.
sum
' attribute was set. SplitInt64 google_dataflow_api::IntegerMean::mutable_count | ( | ) |
Gets a reference to a mutable value of the 'count
' property.
The number of values being aggregated.
SplitInt64 google_dataflow_api::IntegerMean::mutable_sum | ( | ) |
Gets a reference to a mutable value of the 'sum
' property.
The sum of all values being aggregated.
|
static |
Creates a new default instance.