")]
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. |
OdsoRecipientDataCollection
public OdsoRecipientDataCollection()
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.