Uses of Class
org.locationtech.jts.geom.LinearRing
-
Packages that use LinearRing Package Description org.locationtech.jts.geom Contains theGeometry
interface hierarchy and supporting classes.org.locationtech.jts.geomgraph Contains classes that implement topology graphs.org.locationtech.jts.operation.valid Provides classes for testing the validity of geometries. -
-
Uses of LinearRing in org.locationtech.jts.geom
Methods in org.locationtech.jts.geom that return LinearRing Modifier and Type Method Description LinearRing
GeometryFactory. createLinearRing()
Constructs an emptyLinearRing
geometry.LinearRing
GeometryFactory. createLinearRing(Coordinate[] coordinates)
Creates aLinearRing
using the givenCoordinate
s.LinearRing
GeometryFactory. createLinearRing(CoordinateSequence coordinates)
Creates aLinearRing
using the givenCoordinateSequence
.LinearRing
Polygon. getExteriorRing()
LinearRing
Polygon. getInteriorRingN(int n)
static LinearRing[]
GeometryFactory. toLinearRingArray(java.util.Collection linearRings)
Converts theList
to an array.Methods in org.locationtech.jts.geom with parameters of type LinearRing Modifier and Type Method Description Polygon
GeometryFactory. createPolygon(LinearRing shell)
Constructs aPolygon
with the given exterior boundary.Polygon
GeometryFactory. createPolygon(LinearRing shell, LinearRing[] holes)
Constructs aPolygon
with the given exterior boundary and interior boundaries.Constructors in org.locationtech.jts.geom with parameters of type LinearRing Constructor Description Polygon(LinearRing shell, LinearRing[] holes, GeometryFactory factory)
Constructs aPolygon
with the given exterior boundary and interior boundaries.Polygon(LinearRing shell, LinearRing[] holes, PrecisionModel precisionModel, int SRID)
Deprecated.Use GeometryFactory insteadPolygon(LinearRing shell, PrecisionModel precisionModel, int SRID)
Deprecated.Use GeometryFactory instead -
Uses of LinearRing in org.locationtech.jts.geomgraph
Methods in org.locationtech.jts.geomgraph that return LinearRing Modifier and Type Method Description LinearRing
EdgeRing. getLinearRing()
-
Uses of LinearRing in org.locationtech.jts.operation.valid
Methods in org.locationtech.jts.operation.valid with parameters of type LinearRing Modifier and Type Method Description void
IndexedNestedRingTester. add(LinearRing ring)
static Coordinate
IsValidOp. findPtNotNode(Coordinate[] testCoords, LinearRing searchRing, GeometryGraph graph)
Find a point from the list of testCoords that is NOT a node in the edge for the list of searchCoords
-