Class Polygon
- java.lang.Object
-
- io.vertx.mysqlclient.data.spatial.Geometry
-
- io.vertx.mysqlclient.data.spatial.Polygon
-
public class Polygon extends Geometry
A Polygon is a planar Surface representing a multisided geometry. It is defined by a single exterior boundary and zero or more interior boundaries, where each interior boundary defines a hole in the Polygon.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<LineString>
getLineStrings()
Polygon
setLineStrings(List<LineString> lineStrings)
-
-
-
Constructor Detail
-
Polygon
public Polygon()
-
Polygon
public Polygon(Polygon other)
-
Polygon
public Polygon(long SRID, List<LineString> lineStrings)
-
-
Method Detail
-
setLineStrings
public Polygon setLineStrings(List<LineString> lineStrings)
-
getLineStrings
public List<LineString> getLineStrings()
-
-