Class DatasetDistribution.Builder
-
- All Implemented Interfaces:
public abstract class DatasetDistribution.BuilderBuilder for DatasetDistribution.
-
-
Constructor Summary
Constructors Constructor Description DatasetDistribution.Builder()
-
Method Summary
-
-
Method Detail
-
buckets
abstract DatasetDistribution.Builder buckets(List<DatasetDistributionDistributionBucket> buckets)
Setter for buckets.
buckets: Output only. Defines the histogram bucket.
-
buckets
@CanIgnoreReturnValue() DatasetDistribution.Builder buckets(Array<DatasetDistributionDistributionBucket> buckets)
Setter for buckets.
buckets: Output only. Defines the histogram bucket.
-
buckets
@CanIgnoreReturnValue() DatasetDistribution.Builder buckets(Array<DatasetDistributionDistributionBucket.Builder> bucketsBuilders)
Setter for buckets builder.
buckets: Output only. Defines the histogram bucket.
-
clearBuckets
@CanIgnoreReturnValue() DatasetDistribution.Builder clearBuckets()
Clears the value of buckets field.
-
max
abstract DatasetDistribution.Builder max(Double max)
Setter for max.
max: Output only. The maximum of the population values.
-
clearMax
@CanIgnoreReturnValue() DatasetDistribution.Builder clearMax()
Clears the value of max field.
-
mean
abstract DatasetDistribution.Builder mean(Double mean)
Setter for mean.
mean: Output only. The arithmetic mean of the values in the population.
-
clearMean
@CanIgnoreReturnValue() DatasetDistribution.Builder clearMean()
Clears the value of mean field.
-
median
abstract DatasetDistribution.Builder median(Double median)
Setter for median.
median: Output only. The median of the values in the population.
-
clearMedian
@CanIgnoreReturnValue() DatasetDistribution.Builder clearMedian()
Clears the value of median field.
-
min
abstract DatasetDistribution.Builder min(Double min)
Setter for min.
min: Output only. The minimum of the population values.
-
clearMin
@CanIgnoreReturnValue() DatasetDistribution.Builder clearMin()
Clears the value of min field.
-
p5
abstract DatasetDistribution.Builder p5(Double p5)
Setter for p5.
p5: Output only. The 5th percentile of the values in the population.
-
clearP5
@CanIgnoreReturnValue() DatasetDistribution.Builder clearP5()
Clears the value of p5 field.
-
p95
abstract DatasetDistribution.Builder p95(Double p95)
Setter for p95.
p95: Output only. The 95th percentile of the values in the population.
-
clearP95
@CanIgnoreReturnValue() DatasetDistribution.Builder clearP95()
Clears the value of p95 field.
-
sum
abstract DatasetDistribution.Builder sum(Double sum)
Setter for sum.
sum: Output only. Sum of a given population of values.
-
clearSum
@CanIgnoreReturnValue() DatasetDistribution.Builder clearSum()
Clears the value of sum field.
-
build
abstract DatasetDistribution build()
-
-
-
-