com.spire.doc
Class OdsoRecipientDataCollection

java.lang.Object
  extended by com.spire.doc.OdsoRecipientDataCollection
All Implemented Interfaces:
java.lang.Iterable

public class OdsoRecipientDataCollection
extends java.lang.Object
implements java.lang.Iterable

A typed collection of

[JavaGenericArguments("Iterable")]


Constructor Summary
OdsoRecipientDataCollection()
           
 
Method Summary
 int add(OdsoRecipientData value)
          Adds an object to the end of this collection.
 void clear()
          Removes all elements from this collection.
 OdsoRecipientData get(int index)
          Gets an item in this collection.
 int getCount()
          Gets the number of elements contained in the collection.
 java.util.Iterator iterator()
          Returns an enumeratoriterator object that can be used to iterate over all items in the collection.
 void removeAt(int index)
          Removes the element at the specified index.
 void set(int index, OdsoRecipientData value)
          Sets an item in this collection.
 

Constructor Detail

OdsoRecipientDataCollection

public OdsoRecipientDataCollection()
Method Detail

getCount

public int getCount()
Gets the number of elements contained in the collection.


get

public OdsoRecipientData get(int index)
Gets an item in this collection.

Parameters:
index -
Returns:

set

public void set(int index,
                OdsoRecipientData value)
Sets an item in this collection.

Parameters:
index -
value -

iterator

public java.util.Iterator iterator()
Returns an enumeratoriterator object that can be used to iterate over all items in the collection.


add

public int add(OdsoRecipientData value)
Adds an object to the end of this collection.

Parameters:
value - The object to add. Cannot be null.

clear

public void clear()
Removes all elements from this collection.


removeAt

public void removeAt(int index)
Removes the element at the specified index.

Parameters:
index - The zero-based index of the element.