| Interface | osid.inquiry.rules.AuditProcessorList | ||
|---|---|---|---|
| Implements | osid.OsidList | ||
| Used By | osid.inquiry.rules.AuditProcessorEnablerRuleLookupSession | ||
osid.inquiry.rules.AuditProcessorInquestSession | |||
osid.inquiry.rules.AuditProcessorLookupSession | |||
osid.inquiry.rules.AuditProcessorQuerySession | |||
osid.inquiry.rules.AuditProcessorRuleLookupSession | |||
osid.inquiry.rules.AuditProcessorSearchResults | |||
| Description |
Like all while (apl.hasNext()) {
AuditProcessor processor = apl.getNextAuditProcessor();
}
or
while (apl.hasNext()) {
AuditProcessor[] processors = apl.getNextAuditProcessors(apl.available());
}
| ||
| Method | getNextAuditProcessor | ||
| Description |
Gets the next | ||
| Return | osid.inquiry.rules.AuditProcessor | the next AuditProcessor in this list. The
hasNext() method should be used to test that a next
AuditProcessor 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 | getNextAuditProcessors | ||
| Description |
Gets the next set of | ||
| Parameters | cardinal | n | the number of AuditProcessor elements requested which must be
less than or equal to available() |
| Return | osid.inquiry.rules.AuditProcessor[] | an array of AuditProcessor 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. | |