Interface SplitDocument.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SplitDocument.Builder,SplitDocument>,SdkBuilder<SplitDocument.Builder,SplitDocument>,SdkPojo
- Enclosing class:
- SplitDocument
public static interface SplitDocument.Builder extends SdkPojo, CopyableBuilder<SplitDocument.Builder,SplitDocument>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SplitDocument.Builderindex(Integer index)The index for a given document in a DocumentGroup of a specific Type.SplitDocument.Builderpages(Integer... pages)An array of page numbers for a for a given document, ordered by logical boundary.SplitDocument.Builderpages(Collection<Integer> pages)An array of page numbers for a for a given document, ordered by logical boundary.-
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
-
index
SplitDocument.Builder index(Integer index)
The index for a given document in a DocumentGroup of a specific Type.
- Parameters:
index- The index for a given document in a DocumentGroup of a specific Type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pages
SplitDocument.Builder pages(Collection<Integer> pages)
An array of page numbers for a for a given document, ordered by logical boundary.
- Parameters:
pages- An array of page numbers for a for a given document, ordered by logical boundary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pages
SplitDocument.Builder pages(Integer... pages)
An array of page numbers for a for a given document, ordered by logical boundary.
- Parameters:
pages- An array of page numbers for a for a given document, ordered by logical boundary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-