Uses of Class
org.geolatte.geom.Polygon
-
Packages that use Polygon Package Description org.geolatte.geom A model for geospatial geometries.org.geolatte.geom.builder A DSL to simplify the creation of Geometries.org.geolatte.geom.codec.db.oracle org.geolatte.geom.crs.trans org.geolatte.geom.generator -
-
Uses of Polygon in org.geolatte.geom
Methods in org.geolatte.geom that return Polygon Modifier and Type Method Description <Q extends Position>
Polygon<Q>Polygon. as(Class<Q> castToType)static <P extends Position>
Polygon<P>Geometries. mkEmptyPolygon(CoordinateReferenceSystem<P> crs)Creates an emptyPolygonfor a coordinate reference systemstatic <P extends Position>
Polygon<P>Geometries. mkPolygon(List<LinearRing<P>> rings)static <P extends Position>
Polygon<P>Geometries. mkPolygon(LinearRing<P>... rings)Methods in org.geolatte.geom with parameters of type Polygon Modifier and Type Method Description static <P extends Position>
MultiPolygon<P>Geometries. mkMultiPolygon(Polygon<P>... polygons)voidGeometryVisitor. visit(Polygon<P> polygon)Visits aPolygon.voidMeasureInterpolatingVisitor. visit(Polygon polygon)Method parameters in org.geolatte.geom with type arguments of type Polygon Modifier and Type Method Description static <P extends Position>
MultiPolygon<P>Geometries. mkMultiPolygon(List<Polygon<P>> polygons)Constructors in org.geolatte.geom with parameters of type Polygon Constructor Description MultiPolygon(Polygon<P>... polygons)Constructs aMultiPolygonfrom the specified array ofPolygons. -
Uses of Polygon in org.geolatte.geom.builder
Methods in org.geolatte.geom.builder that return Polygon Modifier and Type Method Description static <P extends Position>
Polygon<P>DSL. polygon(CoordinateReferenceSystem<P> crs, DSL.LinearRingToken<P>... tokens)Creates aPolygonfrom the specified ring tokens andCoordinateReferenceSystemstatic <P extends Position>
Polygon<P>DSL. polygon(LinearRing<P> hull, LinearRing<P>... rings)Creates aPolygonfrom the specified outer ring (or hull) and inner rings (if any)Methods in org.geolatte.geom.builder with parameters of type Polygon Modifier and Type Method Description static <P extends Position>
MultiPolygon<P>DSL. multipolygon(Polygon<P> polygon, Polygon<P>... polygons) -
Uses of Polygon in org.geolatte.geom.codec.db.oracle
Methods in org.geolatte.geom.codec.db.oracle with parameters of type Polygon Modifier and Type Method Description protected SDOGeometryAbstractSDOEncoder. addPolygon(SDOGeometry sdoGeom, Polygon polygon) -
Uses of Polygon in org.geolatte.geom.crs.trans
Methods in org.geolatte.geom.crs.trans with parameters of type Polygon Modifier and Type Method Description voidTransformVisitor. visit(Polygon<P> polygon) -
Uses of Polygon in org.geolatte.geom.generator
Methods in org.geolatte.geom.generator that return types with arguments of type Polygon Modifier and Type Method Description static <P extends Position>
Generator<Polygon<P>>GeometryGenerators. polygon(int numPnts, Envelope<P> bbox)static <P extends Position>
Generator<Polygon<P>>GeometryGenerators. polygon(int numPnts, Envelope<P> bbox, Random rnd)
-