com.ibm.uddi.datatypes
Class UploadRegisterList
java.lang.Object
|
+--com.ibm.uddi.datatypes.UploadRegisterList
- All Implemented Interfaces:
- java.io.Serializable
- public class UploadRegisterList
- extends java.lang.Object
- implements java.io.Serializable
Corresponds to UDDI v2.0 sequence of 'uploadRegister' elements.
Encapsulates a Vector of uploadRegister Strings.
- See Also:
- Serialized Form
Constructor Summary |
UploadRegisterList()
Constructs a new, empty UploadRegisterList. |
UploadRegisterList(int initialSize)
Constructs a new, empty UploadRegisterList, with the initial capacity specified. |
Method Summary |
void |
add(java.lang.String uploadRegister)
Adds an uploadRegister to the UploadRegisterList. |
java.lang.String |
get(int i)
Returns the uploadRegister at the specified index. |
int |
size()
Returns the number of uploadRegisters in the UploadRegisterList. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
java_copyright
public static final java.lang.String java_copyright
UploadRegisterList
public UploadRegisterList()
- Constructs a new, empty UploadRegisterList.
UploadRegisterList
public UploadRegisterList(int initialSize)
- Constructs a new, empty UploadRegisterList, with the initial capacity specified.
- Parameters:
initialSize
- the initial capacity of the UploadRegisterList.
add
public void add(java.lang.String uploadRegister)
- Adds an uploadRegister to the UploadRegisterList.
- Parameters:
uploadRegister
- the uploadRegister to be added.
get
public java.lang.String get(int i)
- Returns the uploadRegister at the specified index.
- Parameters:
int
- the index of the uploadRegister to be retrieved.- Returns:
- the uploadRegister at the specified index.
size
public int size()
- Returns the number of uploadRegisters in the UploadRegisterList.
- Returns:
- the number of uploadRegisters in the UploadRegisterList.