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)Center of the Circle defined in longitude and latitude coordinates.Circle.Buildercenter(Collection<Double> center)Center of the Circle defined in longitude and latitude coordinates.Circle.Builderradius(Double radius)Radius of the Circle.-
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
-
center
Circle.Builder center(Collection<Double> center)
Center of the Circle defined in longitude and latitude coordinates.
Example:
[-123.1174, 49.2847]represents the position with longitude-123.1174and latitude49.2847.- Parameters:
center- Center of the Circle defined in longitude and latitude coordinates.Example:
[-123.1174, 49.2847]represents the position with longitude-123.1174and latitude49.2847.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
center
Circle.Builder center(Double... center)
Center of the Circle defined in longitude and latitude coordinates.
Example:
[-123.1174, 49.2847]represents the position with longitude-123.1174and latitude49.2847.- Parameters:
center- Center of the Circle defined in longitude and latitude coordinates.Example:
[-123.1174, 49.2847]represents the position with longitude-123.1174and latitude49.2847.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
radius
Circle.Builder radius(Double radius)
Radius of the Circle.
Unit:
meters- Parameters:
radius- Radius of the Circle.Unit:
meters- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-