Uses of Class
io.github.sebasbaumh.postgis.Geometry
Packages that use Geometry
Package
Description
Binary parser package.
-
Uses of Geometry in io.github.sebasbaumh.postgis
Classes in io.github.sebasbaumh.postgis with type parameters of type GeometryModifier and TypeClassDescriptionclassMultiGeometry<T extends Geometry>Base class for multi geometries.Subclasses of Geometry in io.github.sebasbaumh.postgisModifier and TypeClassDescriptionclassThe CIRCULARSTRING is the basic curve type, similar to a LINESTRING in the linear world.classA compound curve is a single, continuous curve that has both curved (circular) segments and linear segments.classBase class for simple curves likeLineStrings and complex classes likeCompoundCurves.classA CURVEPOLYGON is just like a polygon, with an outer ring and zero or more inner rings.classGeometry Collection.classThis represents the LinearRing GIS datatype.classLinestring.classThe 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.classA multi line.classA multi point.classA multi polygon.classThe MULTISURFACE is a collection of surfaces, which can be (linear) polygons or curve polygons.classPoint geometry.classA polygon.classPolygonBase<T extends Curve>Base class for a polygon to allow similar handling of straight and circular polygons.Fields in io.github.sebasbaumh.postgis declared as GeometryMethods in io.github.sebasbaumh.postgis with type parameters of type GeometryModifier and TypeMethodDescriptionstatic <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 GeometryMethods in io.github.sebasbaumh.postgis with parameters of type GeometryModifier and TypeMethodDescriptionvoidPGgeometrybase.setGeometry(Geometry newgeom) Sets the underlyingGeometry.Constructors in io.github.sebasbaumh.postgis with parameters of type GeometryModifierConstructorDescriptionPGgeography(Geometry geom) Constructs an instance.PGgeometry(Geometry geom) Constructs an instance.protectedPGgeometrybase(String type, Geometry geom) Constructs an instance.Constructor parameters in io.github.sebasbaumh.postgis with type arguments of type GeometryModifierConstructorDescriptionGeometryCollection(Iterable<Geometry> geoms) Constructs an instance. -
Uses of Geometry in io.github.sebasbaumh.postgis.binary
Methods in io.github.sebasbaumh.postgis.binary that return GeometryModifier and TypeMethodDescriptionstatic GeometryBinaryParser.parse(byte[] value, int offset) Parse a hex encoded geometrystatic GeometryParse a hex encoded geometryMethods in io.github.sebasbaumh.postgis.binary with parameters of type GeometryModifier and TypeMethodDescriptionstatic byte[]BinaryWriter.writeBinary(Geometry geom) Write a binary encoded geometry.static StringBinaryWriter.writeHexed(Geometry geom) Write a hex encoded geometry.