Uses of Enum Class
page.codeberg.friedolyn.grades.Exam.ExamStatus
Packages that use Exam.ExamStatus
-
Uses of Exam.ExamStatus in page.codeberg.friedolyn.client.parser
Methods in page.codeberg.friedolyn.client.parser that return Exam.ExamStatusModifier and TypeMethodDescriptionprivate static Exam.ExamStatus
Parser.parsePassedStatus
(@NonNull String passedString) Classifies the given exam-status string as aFuzzyBoolean
value. -
Uses of Exam.ExamStatus in page.codeberg.friedolyn.grades
Fields in page.codeberg.friedolyn.grades declared as Exam.ExamStatusModifier and TypeFieldDescriptionprivate Exam.ExamStatus
Exam.status
Whether the exam is over and, if so, whether successful or not.private Exam.ExamStatus
Module.status
Whether the module is finished and, if so, whether successfully or not.Methods in page.codeberg.friedolyn.grades that return Exam.ExamStatusModifier and TypeMethodDescriptionstatic Exam.ExamStatus
Returns the enum constant of this class with the specified name.static Exam.ExamStatus[]
Exam.ExamStatus.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in page.codeberg.friedolyn.grades that return types with arguments of type Exam.ExamStatusModifier and TypeMethodDescription@NonNull Optional
<Exam.ExamStatus> Exam.getStatus()
@NonNull Optional
<Exam.ExamStatus> Module.getStatus()
static @NonNull Optional
<Exam.ExamStatus> Converts the givenlabel
to the corresponding key in theExam.ExamStatus
enum.Methods in page.codeberg.friedolyn.grades with parameters of type Exam.ExamStatusModifier and TypeMethodDescriptionvoid
Exam.setStatus
(@NonNull Exam.ExamStatus status) Updates theExam.status
to the given value.void
Module.setStatus
(Exam.ExamStatus status) Updates theModule.status
of the module, whether the module is finished and, if so, whether successfully or not.