All Packages Class Hierarchy This Package Previous Next Index
Class sdoOracle.WPointList
java.lang.Object
|
+----sdoOracle.ObjectList
|
+----sdoOracle.WPointList
- public class WPointList
- extends ObjectList
Class WPointList implements a list of spatial points.
- See Also:
- ObjectList, WPoint
-
Add(WPoint)
- Adds a new point to this list.
-
Clear()
- Clears the list content.
-
First()
- Returns the first WPoint object.
-
GetItem(int)
- Returns the WPoint object related with input index.
-
Item()
- Returns the current WPoint object.
-
Next()
- Returns the next WPoint object.
-
Size()
- Returns the actual number of points.
Add
public void Add(WPoint pt)
- Adds a new point to this list.
- Parameters:
- pt - input WPoint object to be added.
First
public WPoint First()
- Returns the first WPoint object.
- Returns:
- returns a WPoint object or null.
Next
public WPoint Next()
- Returns the next WPoint object.
- Returns:
- returns a WPoint object or null.
Clear
public void Clear()
- Clears the list content.
Item
public WPoint Item()
- Returns the current WPoint object.
- Returns:
- returns a WPoint object or null.
GetItem
public WPoint GetItem(int index)
- Returns the WPoint object related with input index.
- Parameters:
- index - position in the list (starts at 0).
- Returns:
- returns a WPoint object or null.
Size
public int Size()
- Returns the actual number of points.
- Returns:
- returns an integer value.
All Packages Class Hierarchy This Package Previous Next Index