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.ACCOUNTS
The accounts that are part of this course and may contain their ownModules
.GradesTable.ACCOUNTS
The accounts that are part of this grades table but not of anycourses
.Methods in page.codeberg.friedolyn.grades that return AccountModifier and TypeMethodDescription@NonNull Account
Course.removeAccount
(int index) Removes the account at the specified position in this course'saccounts list
.@NonNull Account
GradesTable.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 TypeMethodDescriptionvoid
Course.addAccount
(@NonNull Account account) Inserts a newAccount
at the end of this course'saccounts list
.void
GradesTable.addAccount
(@NonNull Account account) Inserts a newAccount
at the end of this course'saccounts list
.void
Course.addAccounts
(@NonNull Account... accounts) Inserts the specifiedAccount
s at the end of this course'saccounts list
.void
GradesTable.addAccounts
(@NonNull Account... accounts) Inserts the specifiedAccount
s at the end of this course'saccounts list
.boolean
Course.removeAccount
(@NonNull Account account) Removes the first occurrence of the specifiedAccount
from this course'saccounts list
, if it is present.boolean
GradesTable.removeAccount
(@NonNull Account account) Removes the first occurrence of the specifiedAccount
from this course'saccounts list
, if it is present.boolean
Course.removeAccounts
(@NonNull Account... accounts) Removes the specifiedAccount
s from this course'saccounts list
, if they are present.boolean
GradesTable.removeAccounts
(@NonNull Account... accounts) Removes the specifiedAccount
s from this course'saccounts list
, if they are present.