Package io.github.sebasbaumh.postgis
Class LinearRing
java.lang.Object
io.github.sebasbaumh.postgis.Geometry
io.github.sebasbaumh.postgis.Curve
io.github.sebasbaumh.postgis.LineString
io.github.sebasbaumh.postgis.LinearRing
- All Implemented Interfaces:
LineBasedGeometry
,Serializable
,Iterable<Point>
This represents the LinearRing GIS datatype. This type is used to construct the polygon types, but is not stored or
retrieved directly from the database.
- See Also:
-
Field Summary
Fields inherited from class io.github.sebasbaumh.postgis.Geometry
UNKNOWN_SRID
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an instance.LinearRing
(Iterable<Point> points) Constructs an instance. -
Method Summary
Methods inherited from class io.github.sebasbaumh.postgis.LineString
add, addAll, checkConsistency, close, equals, getCoordinates, getEndPoint, getNumberOfCoordinates, getStartPoint, hashCode, hasMeasure, is3d, isEmpty, iterator, length, reverse
Methods inherited from class io.github.sebasbaumh.postgis.Curve
isClockwise, isClosed, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
LinearRing
public LinearRing()Constructs an instance. -
LinearRing
Constructs an instance.- Parameters:
points
- points
-