Interface Highlight.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Highlight.Builder,Highlight>,SdkBuilder<Highlight.Builder,Highlight>,SdkPojo
- Enclosing class:
- Highlight
public static interface Highlight.Builder extends SdkPojo, CopyableBuilder<Highlight.Builder,Highlight>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Highlight.BuilderendIndex(Integer endIndex)End index of the highlight.Highlight.BuilderstartIndex(Integer startIndex)Start index of the highlight.Highlight.Buildervalue(String value)The highlight's value.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
startIndex
Highlight.Builder startIndex(Integer startIndex)
Start index of the highlight.
- Parameters:
startIndex- Start index of the highlight.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endIndex
Highlight.Builder endIndex(Integer endIndex)
End index of the highlight.
- Parameters:
endIndex- End index of the highlight.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
Highlight.Builder value(String value)
The highlight's value.
- Parameters:
value- The highlight's value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-