OdsoFieldMapDataCollection
Inheritance: java.lang.Object
All Implemented Interfaces: java.lang.Iterable
public class OdsoFieldMapDataCollection implements Iterable
A typed collection of the OdsoFieldMapData objects.
To learn more, visit the Mail Merge and Reporting documentation article.
Methods
Method | Description |
---|---|
add(OdsoFieldMapData value) | Adds an object to the end of this collection. |
clear() | Removes all elements from this collection. |
get(int index) | Gets an item in this collection. |
getCount() | Gets the number of elements contained in the collection. |
iterator() | Returns an iterator object that can be used to iterate over all items in the collection. |
removeAt(int index) | Removes the element at the specified index. |
set(int index, OdsoFieldMapData value) | Sets an item in this collection. |
add(OdsoFieldMapData value)
public int add(OdsoFieldMapData value)
Adds an object to the end of this collection.
Parameters:
Parameter | Type | Description |
---|---|---|
value | OdsoFieldMapData | The object to add. Cannot be null . |
Returns: int
clear()
public void clear()
Removes all elements from this collection.
get(int index)
public OdsoFieldMapData get(int index)
Gets an item in this collection.
Parameters:
Parameter | Type | Description |
---|---|---|
index | int |
Returns: OdsoFieldMapData - An item in this collection.
getCount()
public int getCount()
Gets the number of elements contained in the collection.
Returns: int - The number of elements contained in the collection.
iterator()
public Iterator iterator()
Returns an iterator object that can be used to iterate over all items in the collection.
Returns: java.util.Iterator
removeAt(int index)
public void removeAt(int index)
Removes the element at the specified index.
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | The zero-based index of the element. |
set(int index, OdsoFieldMapData value)
public void set(int index, OdsoFieldMapData value)
Sets an item in this collection.
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | |
value | OdsoFieldMapData | An item in this collection. |