public interface GradebookColumnSummary extends OsidObject
A GradebookColumnSummary is a summary of all entries
within a gradebook column.
| Modifier and Type | Method and Description |
|---|---|
GradebookColumn |
getGradebookColumn()
Gets the
GradebookColumn. |
Id |
getGradebookColumnId()
Gets the
Id of the GradebookColumn. |
GradebookColumnSummaryRecord |
getGradebookColumnSummaryRecord(Type gradebookColumnSummaryRecordType)
Gets the gradebook column summary record corresponding to the given
GradebookColumnSummary record Type. |
java.math.BigDecimal |
getMean()
Gets the mean score.
|
java.math.BigDecimal |
getMedian()
Gets the median score.
|
java.math.BigDecimal |
getMode()
Gets the mode of the score.
|
java.math.BigDecimal |
getRMS()
Gets the root mean square of the score.
|
java.math.BigDecimal |
getStandardDeviation()
Gets the standard deviation.
|
java.math.BigDecimal |
getSum()
Gets the sum of the scores.
|
getDescription, getDisplayName, getGenusType, isOfGenusTypegetId, isCurrentgetRecordTypes, hasRecordTypegetProperties, getPropertiesByRecordTypeId getGradebookColumnId()
Id of the GradebookColumn. Id of the GradebookColumn mandatory - This method must be implemented. GradebookColumn getGradebookColumn() throws OperationFailedException
GradebookColumn. GradebookColumn OperationFailedException - unable to complete requestmandatory - This method must be implemented. java.math.BigDecimal getMean()
mandatory - This method must be implemented. java.math.BigDecimal getMedian()
mandatory - This method must be implemented. java.math.BigDecimal getMode()
mandatory - This method must be implemented. java.math.BigDecimal getRMS()
mandatory - This method must be implemented. java.math.BigDecimal getStandardDeviation()
mandatory - This method must be implemented. java.math.BigDecimal getSum()
mandatory - This method must be implemented. GradebookColumnSummaryRecord getGradebookColumnSummaryRecord(Type gradebookColumnSummaryRecordType) throws OperationFailedException
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
.gradebookColumnSummaryRecordType - the type of the record to
retrieveNullArgumentException -
gradebookColumnSummaryRecordType is null
OperationFailedException - unable to complete requestUnsupportedException -
hasRecordType(gradebookColumnSummaryRecordType) is
false mandatory - This method must be implemented.