vector | java.util.Vector Optional. The vector object to which you want to add an item or list of items. If no value is specified, the service creates a new java.util.Vector object to which the item(s) will be added. |
item | Object Optional. Item to be added to the vector object. Note: You can use either item or itemList to specify the input object. If both item and itemList input parameters are specified, the item as well as the list of items will be added to the vector object. |
itemList | Object[ ] Optional. List of items to be added to the vector object. |
addNulls | String Optional. Specifies whether a null item can be added to the vector object. Set to: false to prevent null values from being added to the vector object. This is the default. true to allow null values to be added to the vector object. |
vector | java.util.Vector Updated vector object with the list of items added or an empty vector in case no items are added. |