Interface IsolineMatchingOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IsolineMatchingOptions.Builder,IsolineMatchingOptions>,SdkBuilder<IsolineMatchingOptions.Builder,IsolineMatchingOptions>,SdkPojo
- Enclosing class:
- IsolineMatchingOptions
public static interface IsolineMatchingOptions.Builder extends SdkPojo, CopyableBuilder<IsolineMatchingOptions.Builder,IsolineMatchingOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IsolineMatchingOptions.BuildernameHint(String nameHint)Attempts to match the provided position to a road similar to the provided name.IsolineMatchingOptions.BuilderonRoadThreshold(Long onRoadThreshold)If the distance to a highway/bridge/tunnel/sliproad is within threshold, the waypoint will be snapped to the highway/bridge/tunnel/sliproad.IsolineMatchingOptions.Builderradius(Long radius)Considers all roads within the provided radius to match the provided destination to.IsolineMatchingOptions.Builderstrategy(String strategy)Strategy that defines matching of the position onto the road network.IsolineMatchingOptions.Builderstrategy(MatchingStrategy strategy)Strategy that defines matching of the position onto the road network.-
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
-
nameHint
IsolineMatchingOptions.Builder nameHint(String nameHint)
Attempts to match the provided position to a road similar to the provided name.
- Parameters:
nameHint- Attempts to match the provided position to a road similar to the provided name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
onRoadThreshold
IsolineMatchingOptions.Builder onRoadThreshold(Long onRoadThreshold)
If the distance to a highway/bridge/tunnel/sliproad is within threshold, the waypoint will be snapped to the highway/bridge/tunnel/sliproad.
Unit:
meters- Parameters:
onRoadThreshold- If the distance to a highway/bridge/tunnel/sliproad is within threshold, the waypoint will be snapped to the highway/bridge/tunnel/sliproad.Unit:
meters- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
radius
IsolineMatchingOptions.Builder radius(Long radius)
Considers all roads within the provided radius to match the provided destination to. The roads that are considered are determined by the provided Strategy.
Unit:
Meters- Parameters:
radius- Considers all roads within the provided radius to match the provided destination to. The roads that are considered are determined by the provided Strategy.Unit:
Meters- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
strategy
IsolineMatchingOptions.Builder strategy(String strategy)
Strategy that defines matching of the position onto the road network. MatchAny considers all roads possible, whereas MatchMostSignificantRoad matches to the most significant road.
- Parameters:
strategy- Strategy that defines matching of the position onto the road network. MatchAny considers all roads possible, whereas MatchMostSignificantRoad matches to the most significant road.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MatchingStrategy,MatchingStrategy
-
strategy
IsolineMatchingOptions.Builder strategy(MatchingStrategy strategy)
Strategy that defines matching of the position onto the road network. MatchAny considers all roads possible, whereas MatchMostSignificantRoad matches to the most significant road.
- Parameters:
strategy- Strategy that defines matching of the position onto the road network. MatchAny considers all roads possible, whereas MatchMostSignificantRoad matches to the most significant road.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MatchingStrategy,MatchingStrategy
-
-