public class ConceptReferenceList
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
ConceptReferenceList() |
Modifier and Type | Method and Description |
---|---|
void |
addConceptReference(ConceptReference vConceptReference) |
void |
addConceptReference(int index,
ConceptReference vConceptReference) |
java.util.Enumeration<? extends ConceptReference> |
enumerateConceptReference()
Method enumerateConceptReference.
|
ConceptReference[] |
getConceptReference()
Method getConceptReference.Returns the contents of the
collection in an Array.
|
ConceptReference |
getConceptReference(int index)
Method getConceptReference.
|
int |
getConceptReferenceCount()
Method getConceptReferenceCount.
|
java.util.Iterator<? extends ConceptReference> |
iterateConceptReference()
Method iterateConceptReference.
|
void |
removeAllConceptReference() |
boolean |
removeConceptReference(ConceptReference vConceptReference)
Method removeConceptReference.
|
ConceptReference |
removeConceptReferenceAt(int index)
Method removeConceptReferenceAt.
|
void |
setConceptReference(ConceptReference[] vConceptReferenceArray) |
void |
setConceptReference(int index,
ConceptReference vConceptReference) |
public void addConceptReference(ConceptReference vConceptReference) throws java.lang.IndexOutOfBoundsException
vConceptReference
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addConceptReference(int index, ConceptReference vConceptReference) throws java.lang.IndexOutOfBoundsException
index
- vConceptReference
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.util.Enumeration<? extends ConceptReference> enumerateConceptReference()
public ConceptReference getConceptReference(int index) throws java.lang.IndexOutOfBoundsException
index
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic ConceptReference[] getConceptReference()
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 getConceptReferenceCount()
public java.util.Iterator<? extends ConceptReference> iterateConceptReference()
public void removeAllConceptReference()
public boolean removeConceptReference(ConceptReference vConceptReference)
vConceptReference
- public ConceptReference removeConceptReferenceAt(int index)
index
- public void setConceptReference(int index, ConceptReference vConceptReference) throws java.lang.IndexOutOfBoundsException
index
- vConceptReference
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setConceptReference(ConceptReference[] vConceptReferenceArray)
vConceptReferenceArray
-