public static enum Assignment.GradeType extends Enum<Assignment.GradeType>
| Enum Constant and Description |
|---|
CHECK_GRADE_TYPE |
GRADE_TYPE_NONE |
LETTER_GRADE_TYPE |
PASS_FAIL_GRADE_TYPE |
SCORE_GRADE_TYPE |
UNGRADED_GRADE_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static Assignment.GradeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Assignment.GradeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Assignment.GradeType GRADE_TYPE_NONE
public static final Assignment.GradeType UNGRADED_GRADE_TYPE
public static final Assignment.GradeType LETTER_GRADE_TYPE
public static final Assignment.GradeType SCORE_GRADE_TYPE
public static final Assignment.GradeType PASS_FAIL_GRADE_TYPE
public static final Assignment.GradeType CHECK_GRADE_TYPE
public static Assignment.GradeType[] values()
for (Assignment.GradeType c : Assignment.GradeType.values()) System.out.println(c);
public static Assignment.GradeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2003–2019 The Sakai Foundation. All rights reserved.