public class ConceptCodes
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
ConceptCodes() |
Modifier and Type | Method and Description |
---|---|
void |
addEntry(int index,
java.lang.String vEntry) |
void |
addEntry(java.lang.String vEntry) |
java.util.Enumeration<? extends java.lang.String> |
enumerateEntry()
Method enumerateEntry.
|
java.lang.String[] |
getEntry()
Method getEntry.Returns the contents of the collection in an
Array.
|
java.lang.String |
getEntry(int index)
Method getEntry.
|
int |
getEntryCount()
Method getEntryCount.
|
java.util.Iterator<? extends java.lang.String> |
iterateEntry()
Method iterateEntry.
|
void |
removeAllEntry() |
boolean |
removeEntry(java.lang.String vEntry)
Method removeEntry.
|
java.lang.String |
removeEntryAt(int index)
Method removeEntryAt.
|
void |
setEntry(int index,
java.lang.String vEntry) |
void |
setEntry(java.lang.String[] vEntryArray) |
public void addEntry(java.lang.String vEntry) throws java.lang.IndexOutOfBoundsException
vEntry
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addEntry(int index, java.lang.String vEntry) throws java.lang.IndexOutOfBoundsException
index
- vEntry
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.util.Enumeration<? extends java.lang.String> enumerateEntry()
public java.lang.String getEntry(int index) throws java.lang.IndexOutOfBoundsException
index
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.lang.String[] getEntry()
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 getEntryCount()
public java.util.Iterator<? extends java.lang.String> iterateEntry()
public void removeAllEntry()
public boolean removeEntry(java.lang.String vEntry)
vEntry
- public java.lang.String removeEntryAt(int index)
index
- public void setEntry(int index, java.lang.String vEntry) throws java.lang.IndexOutOfBoundsException
index
- vEntry
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setEntry(java.lang.String[] vEntryArray)
vEntryArray
-