| Interface | osid.hold.rules.IssueEnablerList | ||
|---|---|---|---|
| Implements | osid.OsidList | ||
| Used By | osid.hold.rules.IssueConstrainerEnablerLookupSession | ||
osid.hold.rules.IssueEnablerLookupSession | |||
osid.hold.rules.IssueEnablerOublietteSession | |||
osid.hold.rules.IssueEnablerQuerySession | |||
osid.hold.rules.IssueEnablerRuleLookupSession | |||
osid.hold.rules.IssueEnablerSearchResults | |||
| Description |
Like all while (iel.hasNext()) {
IssueEnabler issueEnabler =iel.getNextIssueEnabler();
}
or
while (iel.hasNext()) {
IssueEnabler[] issueEnablers = iel.getNextIssueEnablers(iel.available());
}
| ||
| Method | getNextIssueEnabler | ||
| Description |
Gets the next | ||
| Return | osid.hold.rules.IssueEnabler | the next IssueEnabler in this list. The hasNext()
method should be used to test that a next IssueEnabler 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 | getNextIssueEnablers | ||
| Description |
Gets the next set of | ||
| Parameters | cardinal | n | the number of IssueEnabler elements requested which must be
less than or equal to available() |
| Return | osid.hold.rules.IssueEnabler[] | an array of IssueEnabler 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. | |