MultiPolygon.withFactory constructor

MultiPolygon.withFactory(
  1. List<Polygon>? polygons,
  2. GeometryFactory factory
)

@param polygons the Polygons for this MultiPolygon, or null or an empty array to create the empty geometry. Elements may be empty Polygons, but not nulls. The polygons must conform to the assertions specified in the OpenGIS Simple Features Specification for SQL.

Implementation

MultiPolygon.withFactory(List<Polygon>? polygons, GeometryFactory factory)
    : super.withFactory(polygons, factory);