Package | Description |
---|---|
com.google.api.services.dataflow.model |
Modifier and Type | Method and Description |
---|---|
DistributionUpdate |
DistributionUpdate.clone() |
DistributionUpdate |
CounterUpdate.getDistribution()
Distribution data
|
DistributionUpdate |
DistributionUpdate.set(String fieldName,
Object value) |
DistributionUpdate |
DistributionUpdate.setCount(SplitInt64 count)
The count of the number of elements present in the distribution.
|
DistributionUpdate |
DistributionUpdate.setLogBuckets(List<LogBucket> logBuckets)
(Optional) Logarithmic histogram of values.
|
DistributionUpdate |
DistributionUpdate.setMax(SplitInt64 max)
The maximum value present in the distribution.
|
DistributionUpdate |
DistributionUpdate.setMin(SplitInt64 min)
The minimum value present in the distribution.
|
DistributionUpdate |
DistributionUpdate.setSum(SplitInt64 sum)
Use an int64 since we'd prefer the added precision.
|
DistributionUpdate |
DistributionUpdate.setSumOfSquares(Double sumOfSquares)
Use a double since the sum of squares is likely to overflow int64.
|
Modifier and Type | Method and Description |
---|---|
CounterUpdate |
CounterUpdate.setDistribution(DistributionUpdate distribution)
Distribution data
|