OSID Logo
OSID Specifications
grading package
Version 3.1.0
Interfaceosid.grading.GradebookColumnSummary
Implementsosid.OsidObject
Used Byosid.grading.GradebookColumnLookupSession
Description

A GradebookColumnSummary is a summary of all entries within a gradebook column.

MethodgetGradebookColumnId
Description

Gets the Id of the GradebookColumn.

Returnosid.id.Id the Id of the GradebookColumn
Compliancemandatory This method must be implemented.
MethodgetGradebookColumn
Description

Gets the GradebookColumn.

Returnosid.grading.GradebookColumn the GradebookColumn
ErrorsOPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.
MethodgetMean
Description

Gets the mean score. If this system is based on grades, the mean output score is returned.

Returndecimal the mean score
Compliancemandatory This method must be implemented.
MethodgetMedian
Description

Gets the median score. If this system is based on grades, the mean output score is returned.

Returndecimal the median score
Compliancemandatory This method must be implemented.
MethodgetMode
Description

Gets the mode of the score. If this system is based on grades, the mode of the output score is returned.

Returndecimal the median score
Compliancemandatory This method must be implemented.
MethodgetRMS
Description

Gets the root mean square of the score. If this system is based on grades, the RMS of the output score is returned.

Returndecimal the median score
Compliancemandatory This method must be implemented.
MethodgetStandardDeviation
Description

Gets the standard deviation. If this system is based on grades, the spread of the output scores is returned.

Returndecimal the standard deviation
Compliancemandatory This method must be implemented.
MethodgetSum
Description

Gets the sum of the scores. If this system is based on grades, the sum of the output scores is returned.

Returndecimal the median score
Compliancemandatory This method must be implemented.
MethodgetGradebookColumnSummaryRecord
Description

Gets the gradebook column summary record corresponding to the given GradebookColumnSummary record Type. This method is used to retrieve an object implementing the requested record. The gradebookColumnSummaryRecordType may be the Type returned in getRecordTypes() or any of its parents in a Type hierarchy where hasRecordType(gradebookColumnSummaryRecordType) is true.

Parametersosid.type.TypegradebookColumnSummaryRecordType the type of the record to retrieve
Returnosid.grading.records.GradebookColumnSummaryRecord the gradebook column summary record
ErrorsNULL_ARGUMENT gradebookColumnSummaryRecordType is null
OPERATION_FAILED unable to complete request
UNSUPPORTED hasRecordType(gradebookColumnSummaryRecordType) is false
Compliancemandatory This method must be implemented.