Package org.postgis
Class PGgeography
- java.lang.Object
-
- org.postgresql.util.PGobject
-
- org.postgis.PGgeo
-
- org.postgis.PGgeography
-
- All Implemented Interfaces:
Serializable,Cloneable
- Direct Known Subclasses:
PGgeographyLW
public class PGgeography extends PGgeo
A PostgreSQL JDBC PGobject extension data type modeling the geography type.- Author:
- Phillip Ross
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PGgeography()Instantiate with default state.PGgeography(String value)Instantiate with the specified state.PGgeography(Geometry geometry)Instantiate with the specified state.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()-
Methods inherited from class org.postgis.PGgeo
getGeometry, getGeoType, getValue, setGeometry, setValue, toString
-
-
-
-
Constructor Detail
-
PGgeography
public PGgeography()
Instantiate with default state.
-
PGgeography
public PGgeography(Geometry geometry)
Instantiate with the specified state.- Parameters:
geometry- the geometry to instantiate with
-
PGgeography
public PGgeography(String value) throws SQLException
Instantiate with the specified state.- Parameters:
value- the value to instantiate with- Throws:
SQLException
-
-