Interface PlaceGeometry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PlaceGeometry.Builder,PlaceGeometry>,SdkBuilder<PlaceGeometry.Builder,PlaceGeometry>,SdkPojo
- Enclosing class:
- PlaceGeometry
public static interface PlaceGeometry.Builder extends SdkPojo, CopyableBuilder<PlaceGeometry.Builder,PlaceGeometry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PlaceGeometry.Builderpoint(Double... point)A single point geometry specifies a location for a Place using WGS 84 coordinates:PlaceGeometry.Builderpoint(Collection<Double> point)A single point geometry specifies a location for a Place using WGS 84 coordinates:-
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
-
point
PlaceGeometry.Builder point(Collection<Double> point)
A single point geometry specifies a location for a Place using WGS 84 coordinates:
-
x — Specifies the x coordinate or longitude.
-
y — Specifies the y coordinate or latitude.
- Parameters:
point- A single point geometry specifies a location for a Place using WGS 84 coordinates:-
x — Specifies the x coordinate or longitude.
-
y — Specifies the y coordinate or latitude.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
point
PlaceGeometry.Builder point(Double... point)
A single point geometry specifies a location for a Place using WGS 84 coordinates:
-
x — Specifies the x coordinate or longitude.
-
y — Specifies the y coordinate or latitude.
- Parameters:
point- A single point geometry specifies a location for a Place using WGS 84 coordinates:-
x — Specifies the x coordinate or longitude.
-
y — Specifies the y coordinate or latitude.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-