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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LendingDocument.BuilderlendingFields(Collection<LendingField> lendingFields)An array of LendingField objects.LendingDocument.BuilderlendingFields(Consumer<LendingField.Builder>... lendingFields)An array of LendingField objects.LendingDocument.BuilderlendingFields(LendingField... lendingFields)An array of LendingField objects.LendingDocument.BuildersignatureDetections(Collection<SignatureDetection> signatureDetections)A list of signatures detected in a lending document.LendingDocument.BuildersignatureDetections(Consumer<SignatureDetection.Builder>... signatureDetections)A list of signatures detected in a lending document.LendingDocument.BuildersignatureDetections(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 Detail
-
lendingFields
LendingDocument.Builder lendingFields(Collection<LendingField> 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
LendingDocument.Builder lendingFields(LendingField... 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
LendingDocument.Builder lendingFields(Consumer<LendingField.Builder>... lendingFields)
An array of LendingField objects.
This is a convenience method that creates an instance of theLendingField.Builderavoiding the need to create one manually viaLendingField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#lendingFields(List.) - 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:
#lendingFields(java.util.Collection)
-
signatureDetections
LendingDocument.Builder signatureDetections(Collection<SignatureDetection> 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(SignatureDetection... 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.Builderavoiding the need to create one manually viaSignatureDetection.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#signatureDetections(List.) - 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:
#signatureDetections(java.util.Collection)
-
-