Interface RoadSnapTracePoint.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RoadSnapTracePoint.Builder,RoadSnapTracePoint>,SdkBuilder<RoadSnapTracePoint.Builder,RoadSnapTracePoint>,SdkPojo
- Enclosing class:
- RoadSnapTracePoint
public static interface RoadSnapTracePoint.Builder extends SdkPojo, CopyableBuilder<RoadSnapTracePoint.Builder,RoadSnapTracePoint>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RoadSnapTracePoint.Builderheading(Double heading)GPS Heading at the position.RoadSnapTracePoint.Builderposition(Double... position)Position defined as[longitude, latitude].RoadSnapTracePoint.Builderposition(Collection<Double> position)Position defined as[longitude, latitude].RoadSnapTracePoint.Builderspeed(Double speed)Speed at the specified trace point .RoadSnapTracePoint.Buildertimestamp(String timestamp)Timestamp of the event.-
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
-
heading
RoadSnapTracePoint.Builder heading(Double heading)
GPS Heading at the position.
- Parameters:
heading- GPS Heading at the position.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
position
RoadSnapTracePoint.Builder position(Collection<Double> position)
Position defined as
[longitude, latitude].- Parameters:
position- Position defined as[longitude, latitude].- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
position
RoadSnapTracePoint.Builder position(Double... position)
Position defined as
[longitude, latitude].- Parameters:
position- Position defined as[longitude, latitude].- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
speed
RoadSnapTracePoint.Builder speed(Double speed)
Speed at the specified trace point .
Unit:
KilometersPerHour- Parameters:
speed- Speed at the specified trace point .Unit:
KilometersPerHour- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
RoadSnapTracePoint.Builder timestamp(String timestamp)
Timestamp of the event.
- Parameters:
timestamp- Timestamp of the event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-