Package com.oracle.bmc.datasafe.model
Class RandomDecimalNumberFormatEntry.Builder
- java.lang.Object
- 
- com.oracle.bmc.datasafe.model.RandomDecimalNumberFormatEntry.Builder
 
- 
- Enclosing class:
- RandomDecimalNumberFormatEntry
 
 public static class RandomDecimalNumberFormatEntry.Builder extends Object 
- 
- 
Constructor SummaryConstructors Constructor Description Builder()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description RandomDecimalNumberFormatEntrybuild()RandomDecimalNumberFormatEntry.Buildercopy(RandomDecimalNumberFormatEntry model)RandomDecimalNumberFormatEntry.Builderdescription(String description)RandomDecimalNumberFormatEntry.BuilderendValue(Double endValue)The upper bound of the range within which random decimal numbers should be generated.RandomDecimalNumberFormatEntry.BuilderstartValue(Double startValue)The lower bound of the range within which random decimal numbers should be generated.
 
- 
- 
- 
Method Detail- 
descriptionpublic RandomDecimalNumberFormatEntry.Builder description(String description) 
 - 
startValuepublic RandomDecimalNumberFormatEntry.Builder startValue(Double startValue) The lower bound of the range within which random decimal numbers should be generated.It must be less than or equal to the end value. It supports input of double type. - Parameters:
- startValue- the value to set
- Returns:
- this builder
 
 - 
endValuepublic RandomDecimalNumberFormatEntry.Builder endValue(Double endValue) The upper bound of the range within which random decimal numbers should be generated.It must be greater than or equal to the start value. It supports input of double type. - Parameters:
- endValue- the value to set
- Returns:
- this builder
 
 - 
buildpublic RandomDecimalNumberFormatEntry build() 
 - 
copypublic RandomDecimalNumberFormatEntry.Builder copy(RandomDecimalNumberFormatEntry model) 
 
- 
 
-