All Packages Class Hierarchy This Package Previous Next Index
Class sdoOracle.sdoDimension
java.lang.Object
|
+----sdoOracle.sdoDimension
- public class sdoDimension
- extends Object
Class sdoDimension defines the contents of SDO layer '_sdodim'.
Each row of '_sdodim' table' has:
dimension number, oordinate lower boundary, oordinate upper boundary, and tolerance.
Note: when defining dimensions in SDO this package assume dimension
number equal 1 as X axis, and dimension number equal 2 as Y axis.
-
sdoDimension()
- Constructs a new sdoDimension object.
-
GetLowerBound()
- Returns the dimension lower boundary.
-
GetNumber()
- Returns the dimension number.
-
GetTolerance()
- Returns the dimension tolerance.
-
GetUpperBound()
- Returns the dimension upper boundary.
-
SetLowerBound(double)
- Defines the dimension lower boundary.
-
SetNumber(int)
- Defines the dimension number.
-
SetTolerance(double)
- Defines the dimension tolerance.
-
SetUpperBound(double)
- Defines the dimension upper boundary.
sdoDimension
public sdoDimension()
- Constructs a new sdoDimension object.
SetNumber
public void SetNumber(int n)
- Defines the dimension number.
GetNumber
public int GetNumber()
- Returns the dimension number.
- Returns:
- returns an integer value.
SetLowerBound
public void SetLowerBound(double l)
- Defines the dimension lower boundary.
GetLowerBound
public double GetLowerBound()
- Returns the dimension lower boundary.
- Returns:
- returns a double value.
SetUpperBound
public void SetUpperBound(double l)
- Defines the dimension upper boundary.
GetUpperBound
public double GetUpperBound()
- Returns the dimension upper boundary.
- Returns:
- returns a double value.
SetTolerance
public void SetTolerance(double tol)
- Defines the dimension tolerance.
GetTolerance
public double GetTolerance()
- Returns the dimension tolerance.
- Returns:
- returns a double value.
All Packages Class Hierarchy This Package Previous Next Index