| Interface | osid.mapping.path.batch.PathBatchFormList | ||
|---|---|---|---|
| Implements | osid.OsidList | ||
| Description |
Like all
while (pbfl.hasNext()) {
PathBatchForm form = pbfl.getNextPathBatchForm();
}
or
while (pbfl.hasNext()) {
PathBatchForm[] forms = pbfl.getNextPathBatchForms(pbfl.available());
}
| ||
| Method | getNextPathBatchForm | ||
| Description |
Gets the next | ||
| Return | osid.mapping.path.batch.PathBatchForm | the next PathBatchForm in this list. The hasNext()
method should be used to test that a next PathBatchForm
is available before calling this method. | |
| Errors | ILLEGAL_STATE | no more elements available in this list | |
| OPERATION_FAILED | unable to complete request | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | getNextPathBatchForms | ||
| Description |
Gets the next set of | ||
| Parameters | cardinal | n | the number of PathBatchForm elements requested which must be
less than or equal to available() |
| Return | osid.mapping.path.batch.PathBatchForm[] | an array of PathBatchForm elements. The
length of the array is less than or equal to the number specified. | |
| Errors | ILLEGAL_STATE | no more elements available in this list | |
| OPERATION_FAILED | unable to complete request | ||
| Compliance | mandatory | This method must be implemented. | |