Interface RouteRampStepDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RouteRampStepDetails.Builder,RouteRampStepDetails>,SdkBuilder<RouteRampStepDetails.Builder,RouteRampStepDetails>,SdkPojo
- Enclosing class:
- RouteRampStepDetails
public static interface RouteRampStepDetails.Builder extends SdkPojo, CopyableBuilder<RouteRampStepDetails.Builder,RouteRampStepDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RouteRampStepDetails.Builderintersection(Collection<LocalizedString> intersection)Name of the intersection, if applicable to the step.RouteRampStepDetails.Builderintersection(Consumer<LocalizedString.Builder>... intersection)Name of the intersection, if applicable to the step.RouteRampStepDetails.Builderintersection(LocalizedString... intersection)Name of the intersection, if applicable to the step.RouteRampStepDetails.BuildersteeringDirection(String steeringDirection)Steering direction for the step.RouteRampStepDetails.BuildersteeringDirection(RouteSteeringDirection steeringDirection)Steering direction for the step.RouteRampStepDetails.BuilderturnAngle(Double turnAngle)Angle of the turn.RouteRampStepDetails.BuilderturnIntensity(String turnIntensity)Intensity of the turn.RouteRampStepDetails.BuilderturnIntensity(RouteTurnIntensity turnIntensity)Intensity of the turn.-
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
RouteRampStepDetails.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
RouteRampStepDetails.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
RouteRampStepDetails.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)
-
steeringDirection
RouteRampStepDetails.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
RouteRampStepDetails.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
-
turnAngle
RouteRampStepDetails.Builder turnAngle(Double turnAngle)
Angle of the turn.
- Parameters:
turnAngle- Angle of the turn.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
turnIntensity
RouteRampStepDetails.Builder turnIntensity(String turnIntensity)
Intensity of the turn.
- Parameters:
turnIntensity- Intensity of the turn.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RouteTurnIntensity,RouteTurnIntensity
-
turnIntensity
RouteRampStepDetails.Builder turnIntensity(RouteTurnIntensity turnIntensity)
Intensity of the turn.
- Parameters:
turnIntensity- Intensity of the turn.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RouteTurnIntensity,RouteTurnIntensity
-
-