public class AssociatedDataList
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
AssociatedDataList() |
Modifier and Type | Method and Description |
---|---|
void |
addAssociatedData(AssociatedData vAssociatedData) |
void |
addAssociatedData(int index,
AssociatedData vAssociatedData) |
java.util.Enumeration<? extends AssociatedData> |
enumerateAssociatedData()
Method enumerateAssociatedData.
|
AssociatedData[] |
getAssociatedData()
Method getAssociatedData.Returns the contents of the
collection in an Array.
|
AssociatedData |
getAssociatedData(int index)
Method getAssociatedData.
|
int |
getAssociatedDataCount()
Method getAssociatedDataCount.
|
java.util.Iterator<? extends AssociatedData> |
iterateAssociatedData()
Method iterateAssociatedData.
|
void |
removeAllAssociatedData() |
boolean |
removeAssociatedData(AssociatedData vAssociatedData)
Method removeAssociatedData.
|
AssociatedData |
removeAssociatedDataAt(int index)
Method removeAssociatedDataAt.
|
void |
setAssociatedData(AssociatedData[] vAssociatedDataArray) |
void |
setAssociatedData(int index,
AssociatedData vAssociatedData) |
public void addAssociatedData(AssociatedData vAssociatedData) throws java.lang.IndexOutOfBoundsException
vAssociatedData
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addAssociatedData(int index, AssociatedData vAssociatedData) throws java.lang.IndexOutOfBoundsException
index
- vAssociatedData
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.util.Enumeration<? extends AssociatedData> enumerateAssociatedData()
public AssociatedData getAssociatedData(int index) throws java.lang.IndexOutOfBoundsException
index
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic AssociatedData[] getAssociatedData()
Note: Just in case the collection contents are changing in another thread, we pass a 0-length Array of the correct type into the API call. This way we know that the Array returned is of exactly the correct length.
public int getAssociatedDataCount()
public java.util.Iterator<? extends AssociatedData> iterateAssociatedData()
public void removeAllAssociatedData()
public boolean removeAssociatedData(AssociatedData vAssociatedData)
vAssociatedData
- public AssociatedData removeAssociatedDataAt(int index)
index
- public void setAssociatedData(int index, AssociatedData vAssociatedData) throws java.lang.IndexOutOfBoundsException
index
- vAssociatedData
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setAssociatedData(AssociatedData[] vAssociatedDataArray)
vAssociatedDataArray
-