All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class sdoOracle.sdoGIDList

java.lang.Object
   |
   +----sdoOracle.ObjectList
           |
           +----sdoOracle.sdoGIDList

public class sdoGIDList
extends ObjectList
Class sdoGid implements a list of collection of geometries. Refer to SDO manual for additional information.

See Also:
sdoGID, ObjectList, WPoint

Constructor Index

 o sdoGIDList()
Constructs an empty sdoGIDLIst object.

Method Index

 o Add(sdoGID)
Adds a new sdoGID object to this list.
 o Clear()
Clears the list content.
 o FindPoints(WPoint, double)
Returns all point geometries that are within a distance from input point.
 o FindPolygons(WPoint)
Returns all polygon geometries in which the input point is inside or in the boundary.
 o First()
Returns the first sdoGID object.
 o GetItem(int)
Returns the sdoGID object related with input index.
 o Item()
Returns the current sdoGID object.
 o Next()
Returns the next sdoGID object.
 o Size()
Returns the actual number of sdoGID (collection) objects.

Constructors

 o sdoGIDList
 public sdoGIDList()
Constructs an empty sdoGIDLIst object.

Methods

 o Add
 public void Add(sdoGID g)
Adds a new sdoGID object to this list.

Parameters:
g - input geometry collection to be added.
 o First
 public sdoGID First()
Returns the first sdoGID object.

Returns:
returns a sdoGID object or null.
 o Next
 public sdoGID Next()
Returns the next sdoGID object.

Returns:
returns a sdoGID object or null.
 o Clear
 public void Clear()
Clears the list content.

 o Item
 public sdoGID Item()
Returns the current sdoGID object.

Returns:
returns a sdoGID object or null.
 o GetItem
 public sdoGID GetItem(int index)
Returns the sdoGID object related with input index.

Parameters:
index - position in the list (starts at 0).
Returns:
returns a sdoGID object or null.
 o Size
 public int Size()
Returns the actual number of sdoGID (collection) objects.

Returns:
returns an integer value.
 o FindPoints
 public sdoGeometryList FindPoints(WPoint wc,
                                   double tolerance)
Returns all point geometries that are within a distance from input point. This distance is definec by input tolerance value.

Returns:
returns a sdoGeometryList object or null.
 o FindPolygons
 public sdoGeometryList FindPolygons(WPoint wc)
Returns all polygon geometries in which the input point is inside or in the boundary.

Returns:
returns a sdoGeometryList object or null.

All Packages  Class Hierarchy  This Package  Previous  Next  Index