public class CodingSchemeTagList
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
CodingSchemeTagList() |
Modifier and Type | Method and Description |
---|---|
void |
addTag(int index,
java.lang.String vTag) |
void |
addTag(java.lang.String vTag) |
java.util.Enumeration<? extends java.lang.String> |
enumerateTag()
Method enumerateTag.
|
java.lang.String[] |
getTag()
Method getTag.Returns the contents of the collection in an
Array.
|
java.lang.String |
getTag(int index)
Method getTag.
|
int |
getTagCount()
Method getTagCount.
|
java.util.Iterator<? extends java.lang.String> |
iterateTag()
Method iterateTag.
|
void |
removeAllTag() |
boolean |
removeTag(java.lang.String vTag)
Method removeTag.
|
java.lang.String |
removeTagAt(int index)
Method removeTagAt.
|
void |
setTag(int index,
java.lang.String vTag) |
void |
setTag(java.lang.String[] vTagArray) |
public void addTag(java.lang.String vTag) throws java.lang.IndexOutOfBoundsException
vTag
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addTag(int index, java.lang.String vTag) throws java.lang.IndexOutOfBoundsException
index
- vTag
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.util.Enumeration<? extends java.lang.String> enumerateTag()
public java.lang.String getTag(int index) throws java.lang.IndexOutOfBoundsException
index
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.lang.String[] getTag()
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 getTagCount()
public java.util.Iterator<? extends java.lang.String> iterateTag()
public void removeAllTag()
public boolean removeTag(java.lang.String vTag)
vTag
- public java.lang.String removeTagAt(int index)
index
- public void setTag(int index, java.lang.String vTag) throws java.lang.IndexOutOfBoundsException
index
- vTag
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setTag(java.lang.String[] vTagArray)
vTagArray
-