Interface LendingDocument.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<LendingDocument.Builder,
,LendingDocument> SdkBuilder<LendingDocument.Builder,
,LendingDocument> SdkPojo
- Enclosing class:
LendingDocument
@Mutable
@NotThreadSafe
public static interface LendingDocument.Builder
extends SdkPojo, CopyableBuilder<LendingDocument.Builder,LendingDocument>
-
Method Summary
Modifier and TypeMethodDescriptionlendingFields
(Collection<LendingField> lendingFields) An array of LendingField objects.lendingFields
(Consumer<LendingField.Builder>... lendingFields) An array of LendingField objects.lendingFields
(LendingField... lendingFields) An array of LendingField objects.signatureDetections
(Collection<SignatureDetection> signatureDetections) A list of signatures detected in a lending document.signatureDetections
(Consumer<SignatureDetection.Builder>... signatureDetections) A list of signatures detected in a lending document.signatureDetections
(SignatureDetection... signatureDetections) A list of signatures detected in a lending 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 Details
-
lendingFields
An array of LendingField objects.
- Parameters:
lendingFields
- An array of LendingField objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lendingFields
An array of LendingField objects.
- Parameters:
lendingFields
- An array of LendingField objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lendingFields
An array of LendingField objects.
This is a convenience method that creates an instance of theLendingField.Builder
avoiding the need to create one manually viaLendingField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tolendingFields(List<LendingField>)
.- Parameters:
lendingFields
- a consumer that will call methods onLendingField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
signatureDetections
A list of signatures detected in a lending document.
- Parameters:
signatureDetections
- A list of signatures detected in a lending document.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
signatureDetections
A list of signatures detected in a lending document.
- Parameters:
signatureDetections
- A list of signatures detected in a lending document.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
signatureDetections
LendingDocument.Builder signatureDetections(Consumer<SignatureDetection.Builder>... signatureDetections) A list of signatures detected in a lending document.
This is a convenience method that creates an instance of theSignatureDetection.Builder
avoiding the need to create one manually viaSignatureDetection.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosignatureDetections(List<SignatureDetection>)
.- Parameters:
signatureDetections
- a consumer that will call methods onSignatureDetection.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-