Interface ObjectiveBankBatchFormList
- All Superinterfaces:
AutoCloseable, Closeable, OsidList, OsidList
Like all OsidLists , ObjectiveBankBatchFormList
provides a means for accessing ObjectiveBankBatchForm elements
sequentially either one at a time or many at a time. Examples:
while (obbfl.hasNext()) {
ObjectiveBankBatchForm form = obbfl.getNextObjectiveBankBatchForm();
}
or
while (obbfl.hasNext()) {
ObjectiveBankBatchForm[] forms = obbfl.getNextObjectiveBankBatchForms(obbfl.available());
}
-
Method Summary
Modifier and TypeMethodDescriptionGets the nextObjectiveBankBatchFormin this list.getNextObjectiveBankBatchForms(long n) Gets the next set ofObjectiveBankBatchFormelements in this list.
-
Method Details
-
getNextObjectiveBankBatchForm
Gets the nextObjectiveBankBatchFormin this list.- Returns:
- the next
ObjectiveBankBatchFormin this list. ThehasNext()method should be used to test that a nextObjectiveBankBatchFormis available before calling this method. - Throws:
IllegalStateException- no more elements available in this listOperationFailedException- unable to complete request- Compliance:
mandatory- This method must be implemented.
-
getNextObjectiveBankBatchForms
Gets the next set ofObjectiveBankBatchFormelements in this list. The specified amount must be less than or equal to the return fromavailable().- Parameters:
n- the number ofObjectiveBankBatchFormelements requested which must be less than or equal toavailable()- Returns:
- an array of
ObjectiveBankBatchFormelements. The length of the array is less than or equal to the number specified. - Throws:
IllegalStateException- no more elements available in this listOperationFailedException- unable to complete request- Compliance:
mandatory- This method must be implemented.
-