| Interface | osid.workflow.rules.ProcessConstrainerEnablerList | ||
|---|---|---|---|
| Implements | osid.OsidList | ||
| Used By | osid.workflow.rules.ProcessConstrainerEnablerLookupSession | ||
osid.workflow.rules.ProcessConstrainerEnablerOfficeSession | |||
osid.workflow.rules.ProcessConstrainerEnablerQuerySession | |||
osid.workflow.rules.ProcessConstrainerEnablerRuleLookupSession | |||
osid.workflow.rules.ProcessConstrainerEnablerSearchResults | |||
| Description |
Like all while (pcel.hasNext()) {
ProcessConstrainerEnabler enabler = pcel.getNextProcessConstrainerEnabler();
}
or
while (pcel.hasNext()) {
ProcessConstrainerEnabler[] enablers = pcel.getNextProcessConstrainerEnablers(pcel.available());
}
| ||
| Method | getNextProcessConstrainerEnabler | ||
| Description |
Gets the next | ||
| Return | osid.workflow.rules.ProcessConstrainerEnabler | the next ProcessConstrainerEnabler in this list. The
hasNext() method should be used to test that a next
ProcessConstrainerEnabler 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 | getNextProcessConstrainerEnablers | ||
| Description |
Gets the next set of
| ||
| Parameters | cardinal | n | the number of ProcessConstrainerEnabler elements requested
which must be less than or equal to available() |
| Return | osid.workflow.rules.ProcessConstrainerEnabler[] | an array of ProcessConstrainerEnabler 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. | |