Serialized Form
-
Package org.postgis
-
Class org.postgis.ComposedGeom extends Geometry implements Serializable
- serialVersionUID:
- 256L
-
Serialized Fields
-
hashcode
int hashcode
-
nohash
boolean nohash
-
subgeoms
Geometry[] subgeoms
The Array containing the geometries This is only to be exposed by concrete subclasses, to retain type safety.
-
-
Class org.postgis.Geometry extends Object implements Serializable
- serialVersionUID:
- 256L
-
Serialized Fields
-
dimension
int dimension
The dimensionality of this feature (2,3) -
haveMeasure
boolean haveMeasure
Do we have a measure (4th dimension) -
srid
int srid
The spacial reference system id of this geometry, default is no srid -
type
int type
The OGIS geometry type of this feature. this is final as it never changes, it is bound to the subclass of the instance.
-
-
Class org.postgis.GeometryCollection extends ComposedGeom implements Serializable
- serialVersionUID:
- 256L
-
Class org.postgis.LinearRing extends PointComposedGeom implements Serializable
- serialVersionUID:
- 256L
-
Class org.postgis.LineString extends PointComposedGeom implements Serializable
- serialVersionUID:
- 256L
-
Serialized Fields
-
len
double len
-
-
Class org.postgis.MultiLineString extends ComposedGeom implements Serializable
- serialVersionUID:
- 256L
-
Serialized Fields
-
len
double len
-
-
Class org.postgis.MultiPoint extends PointComposedGeom implements Serializable
- serialVersionUID:
- 256L
-
Class org.postgis.MultiPolygon extends ComposedGeom implements Serializable
- serialVersionUID:
- 256L
-
Class org.postgis.Point extends Geometry implements Serializable
- serialVersionUID:
- 256L
-
Serialized Fields
-
m
double m
The measure of the point. -
x
double x
The X coordinate of the point. In most long/lat systems, this is the longitude. -
y
double y
The Y coordinate of the point. In most long/lat systems, this is the latitude. -
z
double z
The Z coordinate of the point. In most long/lat systems, this is a radius from the center of the earth, or the height / elevation over the ground.
-
-
Class org.postgis.PointComposedGeom extends ComposedGeom implements Serializable
- serialVersionUID:
- 256L
-
Class org.postgis.Polygon extends ComposedGeom implements Serializable
- serialVersionUID:
- 256L
-