Interface RouteMatrixSideOfStreetOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RouteMatrixSideOfStreetOptions.Builder,RouteMatrixSideOfStreetOptions>,SdkBuilder<RouteMatrixSideOfStreetOptions.Builder,RouteMatrixSideOfStreetOptions>,SdkPojo
- Enclosing class:
- RouteMatrixSideOfStreetOptions
public static interface RouteMatrixSideOfStreetOptions.Builder extends SdkPojo, CopyableBuilder<RouteMatrixSideOfStreetOptions.Builder,RouteMatrixSideOfStreetOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RouteMatrixSideOfStreetOptions.Builderposition(Double... position)Position defined as[longitude, latitude].RouteMatrixSideOfStreetOptions.Builderposition(Collection<Double> position)Position defined as[longitude, latitude].RouteMatrixSideOfStreetOptions.BuilderuseWith(String useWith)Strategy that defines when the side of street position should be used.RouteMatrixSideOfStreetOptions.BuilderuseWith(SideOfStreetMatchingStrategy useWith)Strategy that defines when the side of street position should be used.-
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
-
position
RouteMatrixSideOfStreetOptions.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
RouteMatrixSideOfStreetOptions.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.
-
useWith
RouteMatrixSideOfStreetOptions.Builder useWith(String useWith)
Strategy that defines when the side of street position should be used. AnyStreet will always use the provided position.
Default Value:
DividedStreetOnly- Parameters:
useWith- Strategy that defines when the side of street position should be used. AnyStreet will always use the provided position.Default Value:
DividedStreetOnly- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SideOfStreetMatchingStrategy,SideOfStreetMatchingStrategy
-
useWith
RouteMatrixSideOfStreetOptions.Builder useWith(SideOfStreetMatchingStrategy useWith)
Strategy that defines when the side of street position should be used. AnyStreet will always use the provided position.
Default Value:
DividedStreetOnly- Parameters:
useWith- Strategy that defines when the side of street position should be used. AnyStreet will always use the provided position.Default Value:
DividedStreetOnly- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SideOfStreetMatchingStrategy,SideOfStreetMatchingStrategy
-
-