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 Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SummaryStatistics.Builder
average(Double average)
The average number in the data set.SummaryStatistics
build()
SummaryStatistics.Builder
copy(SummaryStatistics model)
SummaryStatistics.Builder
lowerQuartile(Double lowerQuartile)
The middle number between the smallest number and the median of the data set.SummaryStatistics.Builder
maximum(Double maximum)
The largest number in the data set.SummaryStatistics.Builder
median(Double median)
The middle number in the data set.SummaryStatistics.Builder
minimum(Double minimum)
The smallest number in the data set.SummaryStatistics.Builder
upperQuartile(Double upperQuartile)
The middle number between the median and the largest number of the data set.
-
-
-
Method Detail
-
minimum
public SummaryStatistics.Builder minimum(Double minimum)
The smallest number in the data set.- Parameters:
minimum
- the value to set- Returns:
- this builder
-
maximum
public SummaryStatistics.Builder maximum(Double maximum)
The largest number in the data set.- Parameters:
maximum
- the value to set- Returns:
- this builder
-
average
public SummaryStatistics.Builder average(Double average)
The average number in the data set.- Parameters:
average
- the value to set- Returns:
- this builder
-
median
public SummaryStatistics.Builder median(Double median)
The middle number in the data set.- Parameters:
median
- the value to set- Returns:
- this builder
-
lowerQuartile
public 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
-
upperQuartile
public 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
-
build
public SummaryStatistics build()
-
copy
public SummaryStatistics.Builder copy(SummaryStatistics model)
-
-