Enum Class ExamsPDF
- All Implemented Interfaces:
Serializable
,Comparable<ExamsPDF>
,Constable
All available PDF files that include the student's grades.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA PDF file that includes the grades of all additional exams, including those that the student failed.A PDF file that includes the grades of all additional exams, including those that the student failed, and the enrolments in the corresponding lectures.A PDF file that includes the grades of all additional exams that the student passed.A PDF file that includes the grades of all exams, including those that the student failed.A PDF file that includes the grades of all exams, including those that the student failed, and the enrolments in the corresponding lectures.A PDF file that includes the grades of all passed exams. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Enum Constant Details
-
EXAMS_PASSED
A PDF file that includes the grades of all passed exams. -
EXAMS_FULL
A PDF file that includes the grades of all exams, including those that the student failed. -
EXAMS_FULL_WITH_LECTURE_ENROLMENTS
A PDF file that includes the grades of all exams, including those that the student failed, and the enrolments in the corresponding lectures. -
ADDITIONAL_EXAMS_PASSED
A PDF file that includes the grades of all additional exams that the student passed. -
ADDITIONAL_EXAMS_FULL
A PDF file that includes the grades of all additional exams, including those that the student failed. -
ADDITIONAL_EXAMS_FULL_WITH_LECTURE_ENROLMENTS
A PDF file that includes the grades of all additional exams, including those that the student failed, and the enrolments in the corresponding lectures.
-
-
Field Details
-
label
The meaning of an enum value as it appears in the Friedolin system.
-
-
Constructor Details
-
ExamsPDF
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
ofLabel
- Parameters:
label
- The label to convert to an enum.- Returns:
- The corresponding enum value, or an empty
Optional
if the label does not match any enum value.
-