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 Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RandomDecimalNumberFormatEntry
build()
RandomDecimalNumberFormatEntry.Builder
copy(RandomDecimalNumberFormatEntry model)
RandomDecimalNumberFormatEntry.Builder
description(String description)
RandomDecimalNumberFormatEntry.Builder
endValue(Double endValue)
The upper bound of the range within which random decimal numbers should be generated.RandomDecimalNumberFormatEntry.Builder
startValue(Double startValue)
The lower bound of the range within which random decimal numbers should be generated.
-
-
-
Method Detail
-
description
public RandomDecimalNumberFormatEntry.Builder description(String description)
-
startValue
public 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
-
endValue
public 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
-
build
public RandomDecimalNumberFormatEntry build()
-
copy
public RandomDecimalNumberFormatEntry.Builder copy(RandomDecimalNumberFormatEntry model)
-
-