public interface InquiryBatchFormList extends OsidList
Like all OsidLists, InquiryBatchFormmList
provides a means for accessing InquiryBatchForm elements
sequentially either one at a time or many at a time. Examples:
while (ibfl.hasNext()) {
InquiryBatchForm form = ibfl.getNextInquiryBatchForm();
}
or
while (ibfl.hasNext()) {
InquiryBatchForm[] forms = ibfl.getNextInquiryBatchForms(ibfl.available());
}
| Modifier and Type | Method and Description |
|---|---|
InquiryBatchForm |
getNextInquiryBatchForm()
Gets the next
InquiryBatchForm in this list. |
InquiryBatchForm[] |
getNextInquiryBatchForms(long n)
Gets the next set of
InquiryBatchForm elements in this
list. |
InquiryBatchForm getNextInquiryBatchForm() throws OperationFailedException
InquiryBatchForm in this list. InquiryBatchForm in this list. The
hasNext() method should be used to test that a
next InquiryBatchForm is available before
calling this method.IllegalStateException - no more elements available in
this listOperationFailedException - unable to complete requestmandatory - This method must be implemented. InquiryBatchForm[] getNextInquiryBatchForms(long n) throws OperationFailedException
InquiryBatchForm elements in this
list. The specified amount must be less than or equal to the return
from available(). n - the number of InquiryBatchForm elements
requested which must be less than or equal to
available() InquiryBatchForm elements.
The length of the array is less than or equal to the
number specified.IllegalStateException - no more elements available in
this listOperationFailedException - unable to complete requestmandatory - This method must be implemented.