Interface IsolineConnectionGeometry.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<IsolineConnectionGeometry.Builder,,IsolineConnectionGeometry> SdkBuilder<IsolineConnectionGeometry.Builder,,IsolineConnectionGeometry> SdkPojo
- Enclosing class:
IsolineConnectionGeometry
-
Method Summary
Modifier and TypeMethodDescriptionlineString(Collection<? extends Collection<Double>> lineString) A series of[longitude, latitude]coordinate pairs defining the connection path whenSimplegeometry format is requested.lineString(Collection<Double>... lineString) A series of[longitude, latitude]coordinate pairs defining the connection path whenSimplegeometry format is requested.An encoded representation of the connection path whenFlexiblePolylinegeometry format is requested.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
lineString
A series of
[longitude, latitude]coordinate pairs defining the connection path whenSimplegeometry format is requested. These coordinates can be directly used as the coordinates array in a GeoJSON LineString without transformation.LineString and Polyline are mutually exclusive properties.
- Parameters:
lineString- A series of[longitude, latitude]coordinate pairs defining the connection path whenSimplegeometry format is requested. These coordinates can be directly used as the coordinates array in a GeoJSON LineString without transformation.LineString and Polyline are mutually exclusive properties.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lineString
A series of
[longitude, latitude]coordinate pairs defining the connection path whenSimplegeometry format is requested. These coordinates can be directly used as the coordinates array in a GeoJSON LineString without transformation.LineString and Polyline are mutually exclusive properties.
- Parameters:
lineString- A series of[longitude, latitude]coordinate pairs defining the connection path whenSimplegeometry format is requested. These coordinates can be directly used as the coordinates array in a GeoJSON LineString without transformation.LineString and Polyline are mutually exclusive properties.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
polyline
An encoded representation of the connection path when
FlexiblePolylinegeometry format is requested. This provides a more compact representation suitable for transmission and storage. To convert to GeoJSON, first decode to obtain coordinate pairs, then use those coordinates as the coordinates array in a GeoJSON LineString.LineString and Polyline are mutually exclusive properties.
- Parameters:
polyline- An encoded representation of the connection path whenFlexiblePolylinegeometry format is requested. This provides a more compact representation suitable for transmission and storage. To convert to GeoJSON, first decode to obtain coordinate pairs, then use those coordinates as the coordinates array in a GeoJSON LineString.LineString and Polyline are mutually exclusive properties.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-