public static interface RegionOfInterest.Builder extends SdkPojo, CopyableBuilder<RegionOfInterest.Builder,RegionOfInterest>
| Modifier and Type | Method and Description |
|---|---|
RegionOfInterest.Builder |
boundingBox(BoundingBox boundingBox)
The box representing a region of interest on screen.
|
default RegionOfInterest.Builder |
boundingBox(Consumer<BoundingBox.Builder> boundingBox)
The box representing a region of interest on screen.
|
RegionOfInterest.Builder |
polygon(Collection<Point> polygon)
Specifies a shape made up of up to 10
Point objects to define a region of interest. |
RegionOfInterest.Builder |
polygon(Consumer<Point.Builder>... polygon)
Specifies a shape made up of up to 10
Point objects to define a region of interest. |
RegionOfInterest.Builder |
polygon(Point... polygon)
Specifies a shape made up of up to 10
Point objects to define a region of interest. |
equalsBySdkFields, sdkFieldscopyapplyMutation, buildRegionOfInterest.Builder boundingBox(BoundingBox boundingBox)
The box representing a region of interest on screen.
boundingBox - The box representing a region of interest on screen.default RegionOfInterest.Builder boundingBox(Consumer<BoundingBox.Builder> boundingBox)
The box representing a region of interest on screen.
This is a convenience method that creates an instance of theBoundingBox.Builder avoiding the need to
create one manually via BoundingBox.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result
is passed to boundingBox(BoundingBox).
boundingBox - a consumer that will call methods on BoundingBox.BuilderboundingBox(BoundingBox)RegionOfInterest.Builder polygon(Collection<Point> polygon)
Specifies a shape made up of up to 10 Point objects to define a region of interest.
polygon - Specifies a shape made up of up to 10 Point objects to define a region of interest.RegionOfInterest.Builder polygon(Point... polygon)
Specifies a shape made up of up to 10 Point objects to define a region of interest.
polygon - Specifies a shape made up of up to 10 Point objects to define a region of interest.RegionOfInterest.Builder polygon(Consumer<Point.Builder>... polygon)
Specifies a shape made up of up to 10 Point objects to define a region of interest.
Point.Builder avoiding the need to create one
manually via Point.builder().
When the Consumer completes,
SdkBuilder.build() is called immediately and its
result is passed to #polygon(List.
polygon - a consumer that will call methods on
Point.Builder#polygon(java.util.Collection) Copyright © 2023. All rights reserved.