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
-
sdoPoint()
- Constructs a new sdoPoint object.
-
sdoPoint(double, double)
- Constructs a new sdoPoint object.
-
Define(double, double)
- Defines the spatial coordinate for this sdoPoint.
-
GetPoint()
- Returns a WPoint object representing the spatial location.
-
GetX()
- Returns the x coordinate.
-
GetY()
- Returns the y coordinate.
sdoPoint
public sdoPoint()
- Constructs a new sdoPoint object.
sdoPoint
public sdoPoint(double x,
double y)
- Constructs a new sdoPoint object.
Define
public void Define(double x,
double y)
- Defines the spatial coordinate for this sdoPoint.
GetX
public double GetX()
- Returns the x coordinate.
- Returns:
- returns a double value.
GetY
public double GetY()
- Returns the y coordinate.
- Returns:
- returns a double value.
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