MultiLineString constructor

MultiLineString(
  1. List<LineString> lineStrings,
  2. PrecisionModel precisionModel,
  3. int SRID
)

Constructs a MultiLineString.

@param lineStrings the LineStrings for this MultiLineString , or null or an empty array to create the empty geometry. Elements may be empty LineStrings, but not null s. @param precisionModel the specification of the grid of allowable points for this MultiLineString @param SRID the ID of the Spatial Reference System used by this MultiLineString @deprecated Use GeometryFactory instead

Implementation

MultiLineString(
    List<LineString> lineStrings, PrecisionModel precisionModel, int SRID)
    : super.withFactory(lineStrings,
          new GeometryFactory.withPrecisionModelSrid(precisionModel, SRID));