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
-
sdoGIDList()
- Constructs an empty sdoGIDLIst object.
-
Add(sdoGID)
- Adds a new sdoGID object to this list.
-
Clear()
- Clears the list content.
-
FindPoints(WPoint, double)
- Returns all point geometries that are within a distance from
input point.
-
FindPolygons(WPoint)
- Returns all polygon geometries in which the input point is
inside or in the boundary.
-
First()
- Returns the first sdoGID object.
-
GetItem(int)
- Returns the sdoGID object related with input index.
-
Item()
- Returns the current sdoGID object.
-
Next()
- Returns the next sdoGID object.
-
Size()
- Returns the actual number of sdoGID (collection) objects.
sdoGIDList
public sdoGIDList()
- Constructs an empty sdoGIDLIst object.
Add
public void Add(sdoGID g)
- Adds a new sdoGID object to this list.
- Parameters:
- g - input geometry collection to be added.
First
public sdoGID First()
- Returns the first sdoGID object.
- Returns:
- returns a sdoGID object or null.
Next
public sdoGID Next()
- Returns the next sdoGID object.
- Returns:
- returns a sdoGID object or null.
Clear
public void Clear()
- Clears the list content.
Item
public sdoGID Item()
- Returns the current sdoGID object.
- Returns:
- returns a sdoGID object or null.
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.
Size
public int Size()
- Returns the actual number of sdoGID (collection) objects.
- Returns:
- returns an integer value.
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.
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