Package com.oracle.bmc.opsi.model
Class SummaryStatistics.Builder
- java.lang.Object
- 
- com.oracle.bmc.opsi.model.SummaryStatistics.Builder
 
- 
- Enclosing class:
- SummaryStatistics
 
 public static class SummaryStatistics.Builder extends Object 
- 
- 
Constructor SummaryConstructors Constructor Description Builder()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description SummaryStatistics.Builderaverage(Double average)The average number in the data set.SummaryStatisticsbuild()SummaryStatistics.Buildercopy(SummaryStatistics model)SummaryStatistics.BuilderlowerQuartile(Double lowerQuartile)The middle number between the smallest number and the median of the data set.SummaryStatistics.Buildermaximum(Double maximum)The largest number in the data set.SummaryStatistics.Buildermedian(Double median)The middle number in the data set.SummaryStatistics.Builderminimum(Double minimum)The smallest number in the data set.SummaryStatistics.BuilderupperQuartile(Double upperQuartile)The middle number between the median and the largest number of the data set.
 
- 
- 
- 
Method Detail- 
minimumpublic SummaryStatistics.Builder minimum(Double minimum) The smallest number in the data set.- Parameters:
- minimum- the value to set
- Returns:
- this builder
 
 - 
maximumpublic SummaryStatistics.Builder maximum(Double maximum) The largest number in the data set.- Parameters:
- maximum- the value to set
- Returns:
- this builder
 
 - 
averagepublic SummaryStatistics.Builder average(Double average) The average number in the data set.- Parameters:
- average- the value to set
- Returns:
- this builder
 
 - 
medianpublic SummaryStatistics.Builder median(Double median) The middle number in the data set.- Parameters:
- median- the value to set
- Returns:
- this builder
 
 - 
lowerQuartilepublic SummaryStatistics.Builder lowerQuartile(Double lowerQuartile) The middle number between the smallest number and the median of the data set.It’s also known as the 25th quartile. - Parameters:
- lowerQuartile- the value to set
- Returns:
- this builder
 
 - 
upperQuartilepublic SummaryStatistics.Builder upperQuartile(Double upperQuartile) The middle number between the median and the largest number of the data set.It’s also known as the 75th quartile. - Parameters:
- upperQuartile- the value to set
- Returns:
- this builder
 
 - 
buildpublic SummaryStatistics build() 
 - 
copypublic SummaryStatistics.Builder copy(SummaryStatistics model) 
 
- 
 
-