Package io.github.sebasbaumh.postgis
Klasse CurvePolygon
- Alle implementierten Schnittstellen:
LineBasedGeometry
,Serializable
,Iterable<Curve>
A CURVEPOLYGON is just like a polygon, with an outer ring and zero or more inner rings. The difference is that a ring
can take the form of a circular string, linear string or compound string.
- Autor:
- Sebastian Baumhekel
- Siehe auch:
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final int
The OGIS geometry type number for polygons with curved segments.Von Klasse geerbte Felder io.github.sebasbaumh.postgis.Geometry
UNKNOWN_SRID
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungConstructs an instance.CurvePolygon
(Curve lsOuterRing) Constructs an instance.CurvePolygon
(Iterable<? extends Curve> rings) Constructs an instance. -
Methodenübersicht
Von Klasse geerbte Methoden io.github.sebasbaumh.postgis.PolygonBase
addRing, checkConsistency, clearRings, equals, getCoordinates, getEndPoint, getNumberOfCoordinates, getNumberOfRings, getOuterRing, getRings, getStartPoint, hashCode, hasMeasure, is3d, isClockwise, isClosed, isEmpty, iterator, length, setOuterRing, toString
Von Klasse geerbte Methoden java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Von Schnittstelle geerbte Methoden java.lang.Iterable
forEach, spliterator
-
Felddetails
-
TYPE
public static final int TYPEThe OGIS geometry type number for polygons with curved segments.- Siehe auch:
-
-
Konstruktordetails
-
CurvePolygon
public CurvePolygon()Constructs an instance. -
CurvePolygon
Constructs an instance.- Parameter:
lsOuterRing
- outer ring
-
CurvePolygon
Constructs an instance.- Parameter:
rings
- rings (first one will be the outer ring)
-