Uses of Class
page.codeberg.friedolyn.grades.Course
Packages that use Course
-
Uses of Course in page.codeberg.friedolyn.grades
Fields in page.codeberg.friedolyn.grades with type parameters of type CourseModifier and TypeFieldDescriptionGradesTable.COURSES
The courses that the student is enrolled in and whose grades are listed in this table.Methods in page.codeberg.friedolyn.grades that return CourseModifier and TypeMethodDescription@NonNull Course
GradesTable.removeCourse
(int index) Removes the course at the specified position in this grade table'scourses list
.Methods in page.codeberg.friedolyn.grades that return types with arguments of type CourseModifier and TypeMethodDescriptionGradesTable.getCourses()
GradesTable.removeCourses
(int... indices) Removes the courses at the specified positions in this grade table'scourses list
.Methods in page.codeberg.friedolyn.grades with parameters of type CourseModifier and TypeMethodDescriptionvoid
Inserts the specifiedCourse
at the end of this grade table'scourses list
.void
GradesTable.addCourses
(@NonNull Course... courses) Inserts the specifiedCourse
s at the end of this grade table'scourses list
.boolean
GradesTable.removeCourse
(@NonNull Course course) Removes the first occurrence of the specifiedCourse
from this grade table'scourses list
, if it is present.boolean
GradesTable.removeCourses
(@NonNull Course... courses) Removes the specifiedCourse
s from this grade table'scourses list
, if they are present.