Interface Circle.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Circle.Builder,Circle>,SdkBuilder<Circle.Builder,Circle>,SdkPojo
- Enclosing class:
- Circle
public static interface Circle.Builder extends SdkPojo, CopyableBuilder<Circle.Builder,Circle>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Circle.Buildercenter(Double... center)A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form[longitude, latitude].Circle.Buildercenter(Collection<Double> center)A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form[longitude, latitude].Circle.Builderradius(Double radius)The radius of the circle in meters.-
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
-
center
Circle.Builder center(Collection<Double> center)
A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form
[longitude, latitude].- Parameters:
center- A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form[longitude, latitude].- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
center
Circle.Builder center(Double... center)
A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form
[longitude, latitude].- Parameters:
center- A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form[longitude, latitude].- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
radius
Circle.Builder radius(Double radius)
The radius of the circle in meters. Must be greater than zero and no larger than 100,000 (100 kilometers).
- Parameters:
radius- The radius of the circle in meters. Must be greater than zero and no larger than 100,000 (100 kilometers).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-