public interface AssessmentEntrySearchOrder extends OsidRelationshipSearchOrder
An interface for specifying the ordering of search results.
| Modifier and Type | Method and Description |
|---|---|
AssessmentEntrySearchOrderRecord |
getAssessmentEntrySearchOrderRecord(Type assessmentEntryRecordType)
Gets the assessment search order record corresponding to the given
assessment entry record
Type. |
AssessmentSearchOrder |
getAssessmentSearchOrder()
Gets the assessment order.
|
CourseSearchOrder |
getCourseSearchOrder()
Gets the course order.
|
GradeSearchOrder |
getGradeSearchOrder()
Gets the grade system search order.
|
ProgramSearchOrder |
getProgramSearchOrder()
Gets the program order.
|
GradeSystemSearchOrder |
getScoreScaleSearchOrder()
Gets the grade system order.
|
ResourceSearchOrder |
getStudentSearchOrder()
Gets the resource order.
|
void |
orderByAssessment(SearchOrderStyle style)
Specifies a preference for ordering the result set by the assessment.
|
void |
orderByCourse(SearchOrderStyle style)
Specifies a preference for ordering the result set by the course.
|
void |
orderByDateCompleted(SearchOrderStyle style)
Specifies a preference for ordering the result set by the completion
date.
|
void |
orderByGrade(SearchOrderStyle style)
Specifies a preference for ordering the result set by the grade system
for GPAs.
|
void |
orderByProgram(SearchOrderStyle style)
Specifies a preference for ordering the result set by the program.
|
void |
orderByScore(SearchOrderStyle style)
Specifies a preference for ordering the result set by the score.
|
void |
orderByScoreScale(SearchOrderStyle style)
Specifies a preference for ordering the result set by the grade system
for scores.
|
void |
orderByStudent(SearchOrderStyle style)
Specifies a preference for ordering the result set by the resource.
|
boolean |
supportsAssessmentSearchOrder()
Tests if an assessment order is available.
|
boolean |
supportsCourseSearchOrder()
Tests if a course order is available.
|
boolean |
supportsGradeSearchOrder()
Tests if a grade search order is available.
|
boolean |
supportsProgramSearchOrder()
Tests if a program order is available.
|
boolean |
supportsScoreScaleSearchOrder()
Tests if a grade system order is available.
|
boolean |
supportsStudentSearchOrder()
Tests if a resource order is available.
|
getEndReasonSearchOrder, orderByEndReason, supportsEndReasonSearchOrderorderByCreateTime, orderByCumulativeRating, orderByDescription, orderByDisplayName, orderByGenusType, orderByLastModifiedTime, orderByState, orderByStatisticorderByIdgetRecordTypes, hasRecordTypeorderByEffective, orderByEndDate, orderByStartDatevoid orderByStudent(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. boolean supportsStudentSearchOrder()
true if a resource order is available,
false otherwisemandatory - This method must be implemented. ResourceSearchOrder getStudentSearchOrder()
UnimplementedException -
supportsStudentSearchOrder() is false optional - This method must be implemented if
supportsStudentSearchOrder() is true.
void orderByAssessment(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. boolean supportsAssessmentSearchOrder()
true if an assessment order is available,
false otherwisemandatory - This method must be implemented. AssessmentSearchOrder getAssessmentSearchOrder()
UnimplementedException -
supportsAssessmentSearchOrder() is false
optional - This method must be implemented if
supportsAssessmentSearchOrder() is true.
void orderByDateCompleted(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. void orderByProgram(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. boolean supportsProgramSearchOrder()
true if a program order is available,
false otherwisemandatory - This method must be implemented. ProgramSearchOrder getProgramSearchOrder()
UnimplementedException -
supportsProgramSearchOrder() is false optional - This method must be implemented if
supportsProgramSearchOrder() is true.
void orderByCourse(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. boolean supportsCourseSearchOrder()
true if a course order is available,
false otherwisemandatory - This method must be implemented. CourseSearchOrder getCourseSearchOrder()
UnimplementedException -
supportsCourseSearchOrder() is false optional - This method must be implemented if
supportsCourseSearchOrder() is true.
void orderByGrade(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. boolean supportsGradeSearchOrder()
true if a grade order is available,
false otherwisemandatory - This method must be implemented. GradeSearchOrder getGradeSearchOrder()
UnimplementedException -
supportsGradeSearchOrder() is false optional - This method must be implemented if
supportsGradeSearchOrder() is true. void orderByScoreScale(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. boolean supportsScoreScaleSearchOrder()
true if a grade system order is available,
false otherwisemandatory - This method must be implemented. GradeSystemSearchOrder getScoreScaleSearchOrder()
UnimplementedException -
supportsScoreScaleSearchOrder() is false
optional - This method must be implemented if
supportsScoreScaleSearchOrder() is true.
void orderByScore(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. AssessmentEntrySearchOrderRecord getAssessmentEntrySearchOrderRecord(Type assessmentEntryRecordType) throws OperationFailedException
Type. Multiple retrievals
return the same underlying object.assessmentEntryRecordType - an assessment entry record typeNullArgumentException -
assessmentEntryRecordType is null OperationFailedException - unable to complete requestUnsupportedException -
hasRecordType(assessmentEntryRecordType) is
false mandatory - This method must be implemented.