Interface BoundingBox.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<BoundingBox.Builder,BoundingBox>
,SdkBuilder<BoundingBox.Builder,BoundingBox>
,SdkPojo
- Enclosing class:
- BoundingBox
public static interface BoundingBox.Builder extends SdkPojo, CopyableBuilder<BoundingBox.Builder,BoundingBox>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BoundingBox.Builder
height(Float height)
The height of the bounding box as a ratio of the overall document page height.BoundingBox.Builder
left(Float left)
The left coordinate of the bounding box as a ratio of overall document page width.BoundingBox.Builder
top(Float top)
The top coordinate of the bounding box as a ratio of overall document page height.BoundingBox.Builder
width(Float width)
The width of the bounding box as a ratio of the overall document page width.-
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, sdkFields
-
-
-
-
Method Detail
-
width
BoundingBox.Builder width(Float width)
The width of the bounding box as a ratio of the overall document page width.
- Parameters:
width
- The width of the bounding box as a ratio of the overall document page width.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
height
BoundingBox.Builder height(Float height)
The height of the bounding box as a ratio of the overall document page height.
- Parameters:
height
- The height of the bounding box as a ratio of the overall document page height.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
left
BoundingBox.Builder left(Float left)
The left coordinate of the bounding box as a ratio of overall document page width.
- Parameters:
left
- The left coordinate of the bounding box as a ratio of overall document page width.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
top
BoundingBox.Builder top(Float top)
The top coordinate of the bounding box as a ratio of overall document page height.
- Parameters:
top
- The top coordinate of the bounding box as a ratio of overall document page height.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-