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