Uses of Class
page.codeberg.friedolyn.grades.Account
Packages that use Account
-
Uses of Account in page.codeberg.friedolyn.grades
Fields in page.codeberg.friedolyn.grades with type parameters of type AccountModifier and TypeFieldDescriptionCourse.ACCOUNTSThe accounts that are part of this course and may contain their ownModules.GradesTable.ACCOUNTSThe accounts that are part of this grades table but not of anycourses.Methods in page.codeberg.friedolyn.grades that return AccountModifier and TypeMethodDescription@NonNull AccountCourse.removeAccount(int index) Removes the account at the specified position in this course'saccounts list.@NonNull AccountGradesTable.removeAccount(int index) Removes the account at the specified position in this course'saccounts list.Methods in page.codeberg.friedolyn.grades that return types with arguments of type AccountModifier and TypeMethodDescriptionCourse.getAccounts()GradesTable.getAccounts()Course.removeAccounts(int... indices) Removes the accounts at the specified positions in this course'saccounts list.GradesTable.removeAccounts(int... indices) Removes the accounts at the specified positions in this course'saccounts list.Methods in page.codeberg.friedolyn.grades with parameters of type AccountModifier and TypeMethodDescriptionvoidCourse.addAccount(@NonNull Account account) Inserts a newAccountat the end of this course'saccounts list.voidGradesTable.addAccount(@NonNull Account account) Inserts a newAccountat the end of this course'saccounts list.voidCourse.addAccounts(@NonNull Account... accounts) Inserts the specifiedAccounts at the end of this course'saccounts list.voidGradesTable.addAccounts(@NonNull Account... accounts) Inserts the specifiedAccounts at the end of this course'saccounts list.booleanCourse.removeAccount(@NonNull Account account) Removes the first occurrence of the specifiedAccountfrom this course'saccounts list, if it is present.booleanGradesTable.removeAccount(@NonNull Account account) Removes the first occurrence of the specifiedAccountfrom this course'saccounts list, if it is present.booleanCourse.removeAccounts(@NonNull Account... accounts) Removes the specifiedAccounts from this course'saccounts list, if they are present.booleanGradesTable.removeAccounts(@NonNull Account... accounts) Removes the specifiedAccounts from this course'saccounts list, if they are present.