Uses of Class
io.github.sebasbaumh.postgis.Geometry
-
Packages that use Geometry Package Description io.github.sebasbaumh.postgis io.github.sebasbaumh.postgis.binary Binary parser package. -
-
Uses of Geometry in io.github.sebasbaumh.postgis
Classes in io.github.sebasbaumh.postgis with type parameters of type Geometry Modifier and Type Class Description classMultiGeometry<T extends Geometry>Base class for multi geometries.Subclasses of Geometry in io.github.sebasbaumh.postgis Modifier and Type Class Description classCircularStringThe CIRCULARSTRING is the basic curve type, similar to a LINESTRING in the linear world.classCompoundCurveA compound curve is a single, continuous curve that has both curved (circular) segments and linear segments.classCurveBase class for simple curves likeLineStrings and complex classes likeCompoundCurves.classCurvePolygonA CURVEPOLYGON is just like a polygon, with an outer ring and zero or more inner rings.classGeometryCollectionGeometry Collection.classLinearRingThis represents the LinearRing GIS datatype.classLineStringLinestring.classMultiCurveThe MULTICURVE is a collection of curves, which can include linear strings, circular strings or compound strings.classMultiGeometry<T extends Geometry>Base class for multi geometries.classMultiLineStringA multi line.classMultiPointA multi point.classMultiPolygonA multi polygon.classMultiSurfaceThe MULTISURFACE is a collection of surfaces, which can be (linear) polygons or curve polygons.classPointPoint geometry.classPolygonA polygon.classPolygonBase<T extends Curve>Base class for a polygon to allow similar handling of straight and circular polygons.Methods in io.github.sebasbaumh.postgis with type parameters of type Geometry Modifier and Type Method Description static <T extends Geometry>
booleanPostGisUtil. checkConsistency(Iterable<T> geoms)Do some internal consistency checks on the given geometries.Methods in io.github.sebasbaumh.postgis that return Geometry Modifier and Type Method Description GeometryPGgeography. getGeometry()Gets the underlyingGeometry.GeometryPGgeometry. getGeometry()Gets the underlyingGeometry.Methods in io.github.sebasbaumh.postgis with parameters of type Geometry Modifier and Type Method Description voidPGgeography. setGeometry(Geometry newgeom)Sets the underlyingGeometry.voidPGgeometry. setGeometry(Geometry newgeom)Sets the underlyingGeometry.Constructors in io.github.sebasbaumh.postgis with parameters of type Geometry Constructor Description PGgeography(Geometry geom)Constructs an instance.PGgeometry(Geometry geom)Constructs an instance.Constructor parameters in io.github.sebasbaumh.postgis with type arguments of type Geometry Constructor Description GeometryCollection(Iterable<Geometry> geoms)Constructs an instance. -
Uses of Geometry in io.github.sebasbaumh.postgis.binary
Methods in io.github.sebasbaumh.postgis.binary that return Geometry Modifier and Type Method Description static GeometryBinaryParser. parse(String value)Parse a hex encoded geometryMethods in io.github.sebasbaumh.postgis.binary with parameters of type Geometry Modifier and Type Method Description static StringBinaryWriter. writeHexed(Geometry geom)Write a hex encoded geometry The geometry you put in must be consistent, geom.checkConsistency() must return true.
-