Interface Substring.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Substring.Builder,Substring>,SdkBuilder<Substring.Builder,Substring>,SdkPojo
- Enclosing class:
- Substring
public static interface Substring.Builder extends SdkPojo, CopyableBuilder<Substring.Builder,Substring>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Substring.Builderlength(Integer length)The length of the substring.Substring.Builderstart(Integer start)The start index of the substring, starting from 0.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
start
Substring.Builder start(Integer start)
The start index of the substring, starting from 0.
- Parameters:
start- The start index of the substring, starting from 0.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
length
Substring.Builder length(Integer length)
The length of the substring.
- Parameters:
length- The length of the substring.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-