org.postgis
Class Point

java.lang.Object
  |
  +--org.postgis.Geometry
        |
        +--org.postgis.Point

public class Point
extends Geometry


Field Summary
 double x
          The X coordinate of the point.
 double y
          The Y coordinate of the point.
 double z
          The Z coordinate of the point.
 
Fields inherited from class org.postgis.Geometry
dimension, GEOMETRYCOLLECTION, LINESTRING, MULTILINESTRING, MULTIPOINT, MULTIPOLYGON, POINT, POLYGON, type
 
Constructor Summary
Point()
           
Point(double x, double y)
           
Point(double x, double y, double z)
           
Point(java.lang.String value)
           
 
Method Summary
 java.lang.String getValue()
           
 double getX()
           
 double getY()
           
 double getZ()
           
 void setX(double x)
           
 void setX(int x)
           
 void setY(double y)
           
 void setY(int y)
           
 void setZ(double z)
           
 void setZ(int z)
           
 java.lang.String toString()
           
 
Methods inherited from class org.postgis.Geometry
getDimension, getType
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

x

public double x
The X coordinate of the point.

y

public double y
The Y coordinate of the point.

z

public double z
The Z coordinate of the point.
Constructor Detail

Point

public Point()

Point

public Point(double x,
             double y,
             double z)

Point

public Point(double x,
             double y)

Point

public Point(java.lang.String value)
      throws java.sql.SQLException
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

getValue

public java.lang.String getValue()

getX

public double getX()

getY

public double getY()

getZ

public double getZ()

setX

public void setX(double x)

setY

public void setY(double y)

setZ

public void setZ(double z)

setX

public void setX(int x)

setY

public void setY(int y)

setZ

public void setZ(int z)