All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class sdoOracle.sdoPoint

java.lang.Object
   |
   +----sdoOracle.sdoGeometry
           |
           +----sdoOracle.sdoPoint

public class sdoPoint
extends sdoGeometry
Class sdoPoint defines a SDO point primitive. SDO supports the three basic primitives: point, line and polygon. Refer to SDO manual for additional information.

See Also:
sdoGeometry, WPoint

Constructor Index

 o sdoPoint()
Constructs a new sdoPoint object.
 o sdoPoint(double, double)
Constructs a new sdoPoint object.

Method Index

 o Define(double, double)
Defines the spatial coordinate for this sdoPoint.
 o GetPoint()
Returns a WPoint object representing the spatial location.
 o GetX()
Returns the x coordinate.
 o GetY()
Returns the y coordinate.

Constructors

 o sdoPoint
 public sdoPoint()
Constructs a new sdoPoint object.

 o sdoPoint
 public sdoPoint(double x,
                 double y)
Constructs a new sdoPoint object.

Methods

 o Define
 public void Define(double x,
                    double y)
Defines the spatial coordinate for this sdoPoint.

 o GetX
 public double GetX()
Returns the x coordinate.

Returns:
returns a double value.
 o GetY
 public double GetY()
Returns the y coordinate.

Returns:
returns a double value.
 o GetPoint
 public WPoint GetPoint()
Returns a WPoint object representing the spatial location.

Returns:
returns a WPoint object.

All Packages  Class Hierarchy  This Package  Previous  Next  Index