Enum CourseGradeState.AuditStatus
- java.lang.Object
-
- java.lang.Enum<CourseGradeState.AuditStatus>
-
- org.openurp.edu.grade.course.model.CourseGradeState.AuditStatus
-
- All Implemented Interfaces:
Serializable,Comparable<CourseGradeState.AuditStatus>
- Enclosing class:
- CourseGradeState
public static enum CourseGradeState.AuditStatus extends Enum<CourseGradeState.AuditStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEPART_AUDIT_PASSEDDEPART_AUDIT_UNPASSEDFINAL_AUDIT_PASSEDFINAL_AUDIT_UNPASSEDNEED_AUDITNEED_FINAL_AUDIT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFullName()static CourseGradeState.AuditStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static CourseGradeState.AuditStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEED_AUDIT
public static final CourseGradeState.AuditStatus NEED_AUDIT
-
DEPART_AUDIT_PASSED
public static final CourseGradeState.AuditStatus DEPART_AUDIT_PASSED
-
DEPART_AUDIT_UNPASSED
public static final CourseGradeState.AuditStatus DEPART_AUDIT_UNPASSED
-
NEED_FINAL_AUDIT
public static final CourseGradeState.AuditStatus NEED_FINAL_AUDIT
-
FINAL_AUDIT_PASSED
public static final CourseGradeState.AuditStatus FINAL_AUDIT_PASSED
-
FINAL_AUDIT_UNPASSED
public static final CourseGradeState.AuditStatus FINAL_AUDIT_UNPASSED
-
-
Method Detail
-
values
public static CourseGradeState.AuditStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CourseGradeState.AuditStatus c : CourseGradeState.AuditStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CourseGradeState.AuditStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getFullName
public String getFullName()
-
-