Package com.oracle.bmc.datasafe.model
Class RandomStringFormatEntry.Builder
- java.lang.Object
-
- com.oracle.bmc.datasafe.model.RandomStringFormatEntry.Builder
-
- Enclosing class:
- RandomStringFormatEntry
public static class RandomStringFormatEntry.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RandomStringFormatEntry
build()
RandomStringFormatEntry.Builder
copy(RandomStringFormatEntry model)
RandomStringFormatEntry.Builder
description(String description)
RandomStringFormatEntry.Builder
endLength(Integer endLength)
The maximum number of characters the generated strings should have.RandomStringFormatEntry.Builder
startLength(Integer startLength)
The minimum number of characters the generated strings should have.
-
-
-
Method Detail
-
description
public RandomStringFormatEntry.Builder description(String description)
-
startLength
public RandomStringFormatEntry.Builder startLength(Integer startLength)
The minimum number of characters the generated strings should have.It can be any integer greater than zero, but it must be less than or equal to the end length.
- Parameters:
startLength
- the value to set- Returns:
- this builder
-
endLength
public RandomStringFormatEntry.Builder endLength(Integer endLength)
The maximum number of characters the generated strings should have.It can be any integer greater than zero, but it must be greater than or equal to the start length.
- Parameters:
endLength
- the value to set- Returns:
- this builder
-
build
public RandomStringFormatEntry build()
-
copy
public RandomStringFormatEntry.Builder copy(RandomStringFormatEntry model)
-
-