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

Method Index

 o Add(WPoint)
Adds a new point to this list.
 o Clear()
Clears the list content.
 o First()
Returns the first WPoint object.
 o GetItem(int)
Returns the WPoint object related with input index.
 o Item()
Returns the current WPoint object.
 o Next()
Returns the next WPoint object.
 o Size()
Returns the actual number of points.

Methods

 o Add
 public void Add(WPoint pt)
Adds a new point to this list.

Parameters:
pt - input WPoint object to be added.
 o First
 public WPoint First()
Returns the first WPoint object.

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

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

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

Returns:
returns a WPoint object or null.
 o 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.
 o Size
 public int Size()
Returns the actual number of points.

Returns:
returns an integer value.

All Packages  Class Hierarchy  This Package  Previous  Next  Index