Interface IsolineShapeGeometry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IsolineShapeGeometry.Builder,IsolineShapeGeometry>,SdkBuilder<IsolineShapeGeometry.Builder,IsolineShapeGeometry>,SdkPojo
- Enclosing class:
- IsolineShapeGeometry
public static interface IsolineShapeGeometry.Builder extends SdkPojo, CopyableBuilder<IsolineShapeGeometry.Builder,IsolineShapeGeometry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IsolineShapeGeometry.Builderpolygon(Collection<? extends Collection<? extends Collection<Double>>> polygon)A list of Isoline Polygons, for each isoline polygon, it contains polygons of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).IsolineShapeGeometry.Builderpolygon(Collection<? extends Collection<Double>>... polygon)A list of Isoline Polygons, for each isoline polygon, it contains polygons of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).IsolineShapeGeometry.BuilderpolylinePolygon(String... polylinePolygon)A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).IsolineShapeGeometry.BuilderpolylinePolygon(Collection<String> polylinePolygon)A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).-
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
-
polygon
IsolineShapeGeometry.Builder polygon(Collection<? extends Collection<? extends Collection<Double>>> polygon)
A list of Isoline Polygons, for each isoline polygon, it contains polygons of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).
- Parameters:
polygon- A list of Isoline Polygons, for each isoline polygon, it contains polygons of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
polygon
IsolineShapeGeometry.Builder polygon(Collection<? extends Collection<Double>>... polygon)
A list of Isoline Polygons, for each isoline polygon, it contains polygons of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).
- Parameters:
polygon- A list of Isoline Polygons, for each isoline polygon, it contains polygons of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
polylinePolygon
IsolineShapeGeometry.Builder polylinePolygon(Collection<String> polylinePolygon)
A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings). For more information on polyline encoding, see https://github .com/heremaps/flexiblepolyline/blob/master/README.md.
- Parameters:
polylinePolygon- A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings). For more information on polyline encoding, see https://github.com/heremaps/flexiblepolyline/blob/master/README.md.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
polylinePolygon
IsolineShapeGeometry.Builder polylinePolygon(String... polylinePolygon)
A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings). For more information on polyline encoding, see https://github .com/heremaps/flexiblepolyline/blob/master/README.md.
- Parameters:
polylinePolygon- A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings). For more information on polyline encoding, see https://github.com/heremaps/flexiblepolyline/blob/master/README.md.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-