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