Interface LendingSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LendingSummary.Builder,LendingSummary>,SdkBuilder<LendingSummary.Builder,LendingSummary>,SdkPojo
- Enclosing class:
- LendingSummary
@Mutable @NotThreadSafe public static interface LendingSummary.Builder extends SdkPojo, CopyableBuilder<LendingSummary.Builder,LendingSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LendingSummary.BuilderdocumentGroups(Collection<DocumentGroup> documentGroups)Contains an array of all DocumentGroup objects.LendingSummary.BuilderdocumentGroups(Consumer<DocumentGroup.Builder>... documentGroups)Contains an array of all DocumentGroup objects.LendingSummary.BuilderdocumentGroups(DocumentGroup... documentGroups)Contains an array of all DocumentGroup objects.LendingSummary.BuilderundetectedDocumentTypes(String... undetectedDocumentTypes)UndetectedDocumentTypes.LendingSummary.BuilderundetectedDocumentTypes(Collection<String> undetectedDocumentTypes)UndetectedDocumentTypes.-
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
-
documentGroups
LendingSummary.Builder documentGroups(Collection<DocumentGroup> documentGroups)
Contains an array of all DocumentGroup objects.
- Parameters:
documentGroups- Contains an array of all DocumentGroup objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
documentGroups
LendingSummary.Builder documentGroups(DocumentGroup... documentGroups)
Contains an array of all DocumentGroup objects.
- Parameters:
documentGroups- Contains an array of all DocumentGroup objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
documentGroups
LendingSummary.Builder documentGroups(Consumer<DocumentGroup.Builder>... documentGroups)
Contains an array of all DocumentGroup objects.
This is a convenience method that creates an instance of theDocumentGroup.Builderavoiding the need to create one manually viaDocumentGroup.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#documentGroups(List.) - Parameters:
documentGroups- a consumer that will call methods onDocumentGroup.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#documentGroups(java.util.Collection)
-
undetectedDocumentTypes
LendingSummary.Builder undetectedDocumentTypes(Collection<String> undetectedDocumentTypes)
UndetectedDocumentTypes.
- Parameters:
undetectedDocumentTypes- UndetectedDocumentTypes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
undetectedDocumentTypes
LendingSummary.Builder undetectedDocumentTypes(String... undetectedDocumentTypes)
UndetectedDocumentTypes.
- Parameters:
undetectedDocumentTypes- UndetectedDocumentTypes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-