IgetBusinessObjectAtIndex()

Retrieves a business object at the given index of the business object array.

Syntax

IBusinessObject IgetBusinessObjectAtIndex(long index);

Parameters

index
The index in the business object array of the business object to retrieve.

Return Values

An IBusinessObject object that contains the business object at the specified index of the business object array.

Exceptions

IInvalidIndexException
Thrown when the index is invalid.

Example

// call the get business object at index method
IBusinessObject aBusinessObject = null;
long index = 1;
aBusinessObject = exampleBusObjArray.IgetBusinessObjectAtIndex(index);

Copyright IBM Corp. 2004, 2005