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