Class Leg
- java.lang.Object
-
- software.amazon.awssdk.services.location.model.Leg
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<Leg.Builder,Leg>
@Generated("software.amazon.awssdk:codegen") public final class Leg extends Object implements SdkPojo, Serializable, ToCopyableBuilder<Leg.Builder,Leg>
Contains the calculated route's details for each path between a pair of positions. The number of legs returned corresponds to one fewer than the total number of positions in the request.
For example, a route with a departure position and destination position returns one leg with the positions snapped to a nearby road:
-
The
StartPositionis the departure position. -
The
EndPositionis the destination position.
A route with a waypoint between the departure and destination position returns two legs with the positions snapped to a nearby road:
-
Leg 1: The
StartPositionis the departure position . TheEndPositionis the waypoint positon. -
Leg 2: The
StartPositionis the waypoint position. TheEndPositionis the destination position.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceLeg.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Leg.Builderbuilder()Doubledistance()The distance between the leg'sStartPositionandEndPositionalong a calculated route.DoubledurationSeconds()The estimated travel time between the leg'sStartPositionandEndPosition.List<Double>endPosition()The terminating position of the leg.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)LegGeometrygeometry()Contains the calculated route's path as a linestring geometry.<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)booleanhasEndPosition()For responses, this returns true if the service returned a value for the EndPosition property.inthashCode()booleanhasStartPosition()For responses, this returns true if the service returned a value for the StartPosition property.booleanhasSteps()For responses, this returns true if the service returned a value for the Steps property.List<SdkField<?>>sdkFields()static Class<? extends Leg.Builder>serializableBuilderClass()List<Double>startPosition()The starting position of the leg.List<Step>steps()Contains a list of steps, which represent subsections of a leg.Leg.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
hasStartPosition
public final boolean hasStartPosition()
For responses, this returns true if the service returned a value for the StartPosition property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
startPosition
public final List<Double> startPosition()
The starting position of the leg. Follows the format
[longitude,latitude].If the
StartPositionisn't located on a road, it's snapped to a nearby road.Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasStartPosition()method.- Returns:
- The starting position of the leg. Follows the format
[longitude,latitude].If the
StartPositionisn't located on a road, it's snapped to a nearby road.
-
hasEndPosition
public final boolean hasEndPosition()
For responses, this returns true if the service returned a value for the EndPosition property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
endPosition
public final List<Double> endPosition()
The terminating position of the leg. Follows the format
[longitude,latitude].If the
EndPositionisn't located on a road, it's snapped to a nearby road.Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasEndPosition()method.- Returns:
- The terminating position of the leg. Follows the format
[longitude,latitude].If the
EndPositionisn't located on a road, it's snapped to a nearby road.
-
distance
public final Double distance()
The distance between the leg's
StartPositionandEndPositionalong a calculated route.-
The default measurement is
Kilometersunless the request specifies aDistanceUnitofMiles.
- Returns:
- The distance between the leg's
StartPositionandEndPositionalong a calculated route.-
The default measurement is
Kilometersunless the request specifies aDistanceUnitofMiles.
-
-
-
durationSeconds
public final Double durationSeconds()
The estimated travel time between the leg's
StartPositionandEndPosition. The travel mode and departure time that you specify in the request determines the calculated time.- Returns:
- The estimated travel time between the leg's
StartPositionandEndPosition. The travel mode and departure time that you specify in the request determines the calculated time.
-
geometry
public final LegGeometry geometry()
Contains the calculated route's path as a linestring geometry.
- Returns:
- Contains the calculated route's path as a linestring geometry.
-
hasSteps
public final boolean hasSteps()
For responses, this returns true if the service returned a value for the Steps property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
steps
public final List<Step> steps()
Contains a list of steps, which represent subsections of a leg. Each step provides instructions for how to move to the next step in the leg such as the step's start position, end position, travel distance, travel duration, and geometry offset.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasSteps()method.- Returns:
- Contains a list of steps, which represent subsections of a leg. Each step provides instructions for how to move to the next step in the leg such as the step's start position, end position, travel distance, travel duration, and geometry offset.
-
toBuilder
public Leg.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<Leg.Builder,Leg>
-
builder
public static Leg.Builder builder()
-
serializableBuilderClass
public static Class<? extends Leg.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-