Class PGgeometryLW

java.lang.Object
org.postgresql.util.PGobject
All Implemented Interfaces:
Serializable, Cloneable

public class PGgeometryLW extends PGgeometry
A PostgreSQL JDBC PGobject extension data type modeling the geometry type. The hex-encoded EWKB format is used to communicate with the backend, which is much more efficient, but only works with Lwgeom enabled PostGIS (1.0.0 and up).
Author:
Phillip Ross
See Also:
  • Constructor Details

    • PGgeometryLW

      public PGgeometryLW()
      Instantiate with default state.
    • PGgeometryLW

      public PGgeometryLW(Geometry geometry)
      Instantiate with the specified state.
      Parameters:
      geometry - the geometry to instantiate with
    • PGgeometryLW

      public PGgeometryLW(String value) throws SQLException
      Instantiate with the specified state.
      Parameters:
      value - the value to instantiate with
      Throws:
      SQLException
  • Method Details