Interface RouteRoundaboutExitStepDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RouteRoundaboutExitStepDetails.Builder,RouteRoundaboutExitStepDetails>,SdkBuilder<RouteRoundaboutExitStepDetails.Builder,RouteRoundaboutExitStepDetails>,SdkPojo
- Enclosing class:
- RouteRoundaboutExitStepDetails
public static interface RouteRoundaboutExitStepDetails.Builder extends SdkPojo, CopyableBuilder<RouteRoundaboutExitStepDetails.Builder,RouteRoundaboutExitStepDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RouteRoundaboutExitStepDetails.Builderintersection(Collection<LocalizedString> intersection)Name of the intersection, if applicable to the step.RouteRoundaboutExitStepDetails.Builderintersection(Consumer<LocalizedString.Builder>... intersection)Name of the intersection, if applicable to the step.RouteRoundaboutExitStepDetails.Builderintersection(LocalizedString... intersection)Name of the intersection, if applicable to the step.RouteRoundaboutExitStepDetails.BuilderrelativeExit(Integer relativeExit)Exit to be taken.RouteRoundaboutExitStepDetails.BuilderroundaboutAngle(Double roundaboutAngle)Angle of the roundabout.RouteRoundaboutExitStepDetails.BuildersteeringDirection(String steeringDirection)Steering direction for the step.RouteRoundaboutExitStepDetails.BuildersteeringDirection(RouteSteeringDirection steeringDirection)Steering direction for the step.-
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
-
intersection
RouteRoundaboutExitStepDetails.Builder intersection(Collection<LocalizedString> intersection)
Name of the intersection, if applicable to the step.
- Parameters:
intersection- Name of the intersection, if applicable to the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intersection
RouteRoundaboutExitStepDetails.Builder intersection(LocalizedString... intersection)
Name of the intersection, if applicable to the step.
- Parameters:
intersection- Name of the intersection, if applicable to the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intersection
RouteRoundaboutExitStepDetails.Builder intersection(Consumer<LocalizedString.Builder>... intersection)
Name of the intersection, if applicable to the step.
This is a convenience method that creates an instance of theLocalizedString.Builderavoiding the need to create one manually viaLocalizedString.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#intersection(List.) - Parameters:
intersection- a consumer that will call methods onLocalizedString.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#intersection(java.util.Collection)
-
relativeExit
RouteRoundaboutExitStepDetails.Builder relativeExit(Integer relativeExit)
Exit to be taken.
- Parameters:
relativeExit- Exit to be taken.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
roundaboutAngle
RouteRoundaboutExitStepDetails.Builder roundaboutAngle(Double roundaboutAngle)
Angle of the roundabout.
- Parameters:
roundaboutAngle- Angle of the roundabout.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steeringDirection
RouteRoundaboutExitStepDetails.Builder steeringDirection(String steeringDirection)
Steering direction for the step.
- Parameters:
steeringDirection- Steering direction for the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RouteSteeringDirection,RouteSteeringDirection
-
steeringDirection
RouteRoundaboutExitStepDetails.Builder steeringDirection(RouteSteeringDirection steeringDirection)
Steering direction for the step.
- Parameters:
steeringDirection- Steering direction for the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RouteSteeringDirection,RouteSteeringDirection
-
-