Interface RoadSnapSnappedGeometry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RoadSnapSnappedGeometry.Builder,RoadSnapSnappedGeometry>,SdkBuilder<RoadSnapSnappedGeometry.Builder,RoadSnapSnappedGeometry>,SdkPojo
- Enclosing class:
- RoadSnapSnappedGeometry
public static interface RoadSnapSnappedGeometry.Builder extends SdkPojo, CopyableBuilder<RoadSnapSnappedGeometry.Builder,RoadSnapSnappedGeometry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RoadSnapSnappedGeometry.BuilderlineString(Collection<? extends Collection<Double>> lineString)An ordered list of positions used to plot a route on a map.RoadSnapSnappedGeometry.BuilderlineString(Collection<Double>... lineString)An ordered list of positions used to plot a route on a map.RoadSnapSnappedGeometry.Builderpolyline(String polyline)An ordered list of positions used to plot a route on a map in a lossy compression format.-
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
-
lineString
RoadSnapSnappedGeometry.Builder lineString(Collection<? extends Collection<Double>> lineString)
An ordered list of positions used to plot a route on a map.
LineString and Polyline are mutually exclusive properties.
- Parameters:
lineString- An ordered list of positions used to plot a route on a map.LineString and Polyline are mutually exclusive properties.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lineString
RoadSnapSnappedGeometry.Builder lineString(Collection<Double>... lineString)
An ordered list of positions used to plot a route on a map.
LineString and Polyline are mutually exclusive properties.
- Parameters:
lineString- An ordered list of positions used to plot a route on a map.LineString and Polyline are mutually exclusive properties.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
polyline
RoadSnapSnappedGeometry.Builder polyline(String polyline)
An ordered list of positions used to plot a route on a map in a lossy compression format.
LineString and Polyline are mutually exclusive properties.
- Parameters:
polyline- An ordered list of positions used to plot a route on a map in a lossy compression format.LineString and Polyline are mutually exclusive properties.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-