Interface DocumentCharLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DocumentCharLocation.Builder,DocumentCharLocation>,SdkBuilder<DocumentCharLocation.Builder,DocumentCharLocation>,SdkPojo
- Enclosing class:
- DocumentCharLocation
@Mutable @NotThreadSafe public static interface DocumentCharLocation.Builder extends SdkPojo, CopyableBuilder<DocumentCharLocation.Builder,DocumentCharLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DocumentCharLocation.BuilderdocumentIndex(Integer documentIndex)The index of the document within the array of documents provided in the request.DocumentCharLocation.Builderend(Integer end)The ending character position of the cited content within the document.DocumentCharLocation.Builderstart(Integer start)The starting character position of the cited content within the document.-
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
-
documentIndex
DocumentCharLocation.Builder documentIndex(Integer documentIndex)
The index of the document within the array of documents provided in the request.
- Parameters:
documentIndex- The index of the document within the array of documents provided in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
start
DocumentCharLocation.Builder start(Integer start)
The starting character position of the cited content within the document.
- Parameters:
start- The starting character position of the cited content within the document.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
end
DocumentCharLocation.Builder end(Integer end)
The ending character position of the cited content within the document.
- Parameters:
end- The ending character position of the cited content within the document.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-