Interface RouteContinueStepDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RouteContinueStepDetails.Builder,RouteContinueStepDetails>,SdkBuilder<RouteContinueStepDetails.Builder,RouteContinueStepDetails>,SdkPojo
- Enclosing class:
- RouteContinueStepDetails
public static interface RouteContinueStepDetails.Builder extends SdkPojo, CopyableBuilder<RouteContinueStepDetails.Builder,RouteContinueStepDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RouteContinueStepDetails.Builderintersection(Collection<LocalizedString> intersection)Name of the intersection, if applicable to the step.RouteContinueStepDetails.Builderintersection(Consumer<LocalizedString.Builder>... intersection)Name of the intersection, if applicable to the step.RouteContinueStepDetails.Builderintersection(LocalizedString... intersection)Name of the intersection, if applicable to 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
RouteContinueStepDetails.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
RouteContinueStepDetails.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
RouteContinueStepDetails.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)
-
-