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