| Interface | osid.hold.rules.IssueProcessorEnablerList | ||
|---|---|---|---|
| Implements | osid.OsidList | ||
| Used By | osid.hold.rules.IssueProcessorEnablerLookupSession | ||
osid.hold.rules.IssueProcessorEnablerOublietteSession | |||
osid.hold.rules.IssueProcessorEnablerQuerySession | |||
osid.hold.rules.IssueProcessorEnablerRuleLookupSession | |||
osid.hold.rules.IssueProcessorEnablerSearchResults | |||
| Description |
Like all while (ipel.hasNext()) {
IssueProcessorEnabler enabler =i pel.getNextIssueProcessorEnabler();
}
or
while (ipel.hasNext()) {
IssueProcessorEnabler[] enablers = ipel.getNextIssueProcessorEnablers(ipel.available());
}
| ||
| Method | getNextIssueProcessorEnabler | ||
| Description |
Gets the next | ||
| Return | osid.hold.rules.IssueProcessorEnabler | the next IssueProcessorEnabler in this list. The
hasNext() method should be used to test that a next
IssueProcessorEnabler 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 | getNextIssueProcessorEnablers | ||
| Description |
Gets the next set of | ||
| Parameters | cardinal | n | the number of IssueProcessorEnabler elements requested which
must be less than or equal to available() |
| Return | osid.hold.rules.IssueProcessorEnabler[] | an array of IssueProcessorEnabler 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. | |