public interface CourseSearchOrder extends OsidObjectSearchOrder, OsidOperableSearchOrder
An interface for specifying the ordering of search results.
| Modifier and Type | Method and Description |
|---|---|
CourseSearchOrderRecord |
getCourseSearchOrderRecord(Type courseRecordType)
Gets the course search order record corresponding to the given course
record
Type. |
void |
orderByNumber(SearchOrderStyle style)
Specifies a preference for ordering the result set by course number.
|
void |
orderByPrerequisitesInfo(SearchOrderStyle style)
Specifies a preference for ordering the result set by course
prerequisite information.
|
void |
orderByTitle(SearchOrderStyle style)
Specifies a preference for ordering the result set by course title.
|
orderByCreateTime, orderByCumulativeRating, orderByDescription, orderByDisplayName, orderByGenusType, orderByLastModifiedTime, orderByState, orderByStatisticorderByIdgetRecordTypes, hasRecordTypeorderByActive, orderByDisabled, orderByEnabled, orderByOperationalvoid orderByTitle(SearchOrderStyle style)
style - a search order styleNullArgumentException - style is
null mandatory - This method must be implemented. void orderByNumber(SearchOrderStyle style)
style - a search order styleNullArgumentException - style is
null mandatory - This method must be implemented. void orderByPrerequisitesInfo(SearchOrderStyle style)
style - a search order styleNullArgumentException - style is
null mandatory - This method must be implemented. CourseSearchOrderRecord getCourseSearchOrderRecord(Type courseRecordType) throws OperationFailedException
Type. Multiple retrievals return the same
underlying object.courseRecordType - a course record typeNullArgumentException - courseRecordType
is null OperationFailedException - unable to complete requestUnsupportedException -
hasRecordType(courseRecordType) is false
mandatory - This method must be implemented.