public static interface HistogramBinOptions.Builder extends SdkPojo, CopyableBuilder<HistogramBinOptions.Builder,HistogramBinOptions>
Modifier and Type | Method and Description |
---|---|
HistogramBinOptions.Builder |
binCount(BinCountOptions binCount)
The options that determine the bin count of a histogram.
|
default HistogramBinOptions.Builder |
binCount(Consumer<BinCountOptions.Builder> binCount)
The options that determine the bin count of a histogram.
|
HistogramBinOptions.Builder |
binWidth(BinWidthOptions binWidth)
The options that determine the bin width of a histogram.
|
default HistogramBinOptions.Builder |
binWidth(Consumer<BinWidthOptions.Builder> binWidth)
The options that determine the bin width of a histogram.
|
HistogramBinOptions.Builder |
selectedBinType(HistogramBinType selectedBinType)
The options that determine the selected bin type.
|
HistogramBinOptions.Builder |
selectedBinType(String selectedBinType)
The options that determine the selected bin type.
|
HistogramBinOptions.Builder |
startValue(Double startValue)
The options that determine the bin start value.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
HistogramBinOptions.Builder selectedBinType(String selectedBinType)
The options that determine the selected bin type.
selectedBinType
- The options that determine the selected bin type.HistogramBinType
,
HistogramBinType
HistogramBinOptions.Builder selectedBinType(HistogramBinType selectedBinType)
The options that determine the selected bin type.
selectedBinType
- The options that determine the selected bin type.HistogramBinType
,
HistogramBinType
HistogramBinOptions.Builder binCount(BinCountOptions binCount)
The options that determine the bin count of a histogram.
binCount
- The options that determine the bin count of a histogram.default HistogramBinOptions.Builder binCount(Consumer<BinCountOptions.Builder> binCount)
The options that determine the bin count of a histogram.
This is a convenience method that creates an instance of theBinCountOptions.Builder
avoiding the
need to create one manually via BinCountOptions.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to binCount(BinCountOptions)
.
binCount
- a consumer that will call methods on BinCountOptions.Builder
binCount(BinCountOptions)
HistogramBinOptions.Builder binWidth(BinWidthOptions binWidth)
The options that determine the bin width of a histogram.
binWidth
- The options that determine the bin width of a histogram.default HistogramBinOptions.Builder binWidth(Consumer<BinWidthOptions.Builder> binWidth)
The options that determine the bin width of a histogram.
This is a convenience method that creates an instance of theBinWidthOptions.Builder
avoiding the
need to create one manually via BinWidthOptions.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to binWidth(BinWidthOptions)
.
binWidth
- a consumer that will call methods on BinWidthOptions.Builder
binWidth(BinWidthOptions)
HistogramBinOptions.Builder startValue(Double startValue)
The options that determine the bin start value.
startValue
- The options that determine the bin start value.Copyright © 2023. All rights reserved.