public class EventReceipt extends Object implements Serializable
Constructor and Description |
---|
EventReceipt() |
Modifier and Type | Method and Description |
---|---|
void |
addUuid(int index,
String vUuid) |
void |
addUuid(String vUuid) |
Enumeration<String> |
enumerateUuid()
Method enumerateUuid.
|
String[] |
getUuid()
Method getUuid.Returns the contents of the collection in an
Array.
|
String |
getUuid(int index)
Method getUuid.
|
List<String> |
getUuidCollection()
Method getUuidCollection.Returns a reference to '_uuidList'.
|
int |
getUuidCount()
Method getUuidCount.
|
Iterator<String> |
iterateUuid()
Method iterateUuid.
|
void |
removeAllUuid() |
boolean |
removeUuid(String vUuid)
Method removeUuid.
|
String |
removeUuidAt(int index)
Method removeUuidAt.
|
void |
setUuid(int index,
String vUuid) |
void |
setUuid(List<String> vUuidList)
Sets the value of '_uuidList' by copying the given Vector.
|
void |
setUuid(String[] vUuidArray) |
void |
setUuidCollection(List<String> uuidList)
Deprecated.
|
String |
toString() |
public void addUuid(String vUuid) throws IndexOutOfBoundsException
vUuid
- IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addUuid(int index, String vUuid) throws IndexOutOfBoundsException
index
- vUuid
- IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic Enumeration<String> enumerateUuid()
public String getUuid(int index) throws IndexOutOfBoundsException
index
- IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic String[] getUuid()
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 List<String> getUuidCollection()
public int getUuidCount()
public Iterator<String> iterateUuid()
public void removeAllUuid()
public boolean removeUuid(String vUuid)
vUuid
- public String removeUuidAt(int index)
index
- public void setUuid(int index, String vUuid) throws IndexOutOfBoundsException
index
- vUuid
- IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setUuid(String[] vUuidArray)
vUuidArray
- public void setUuid(List<String> vUuidList)
vUuidList
- the Vector to copy.public void setUuidCollection(List<String> uuidList)
uuidList
- the Vector to set.Copyright © 2021. All rights reserved.