Uses of Class
page.codeberg.friedolyn.grades.Subaccount
Packages that use Subaccount
-
Uses of Subaccount in page.codeberg.friedolyn.grades
Fields in page.codeberg.friedolyn.grades with type parameters of type SubaccountModifier and TypeFieldDescriptionprivate final @NonNull ArrayList
<Subaccount> Account.SUB_ACCOUNTS
The subaccounts that are part of this account and may contain their ownModules
.private final @NonNull ArrayList
<Subaccount> Course.SUBACCOUNTS
private final @NonNull ArrayList
<Subaccount> GradesTable.SUBACCOUNTS
Methods in page.codeberg.friedolyn.grades that return SubaccountModifier and TypeMethodDescription@NonNull Subaccount
Account.removeSubaccount
(int index) Removes the subaccount at the specified position in this account'ssubaccounts list
.@NonNull Subaccount
Course.removeSubaccount
(int index) Removes the subaccount at the specified position in this course'ssubaccounts list
.@NonNull Subaccount
GradesTable.removeSubaccount
(int index) Removes the subaccount at the specified position in this account'ssubaccounts list
.Methods in page.codeberg.friedolyn.grades that return types with arguments of type SubaccountModifier and TypeMethodDescription@NonNull ArrayList
<Subaccount> Account.getSubaccounts()
@NonNull ArrayList
<Subaccount> Course.getSubaccounts()
@NonNull ArrayList
<Subaccount> GradesTable.getSubaccounts()
@NonNull ArrayList
<Subaccount> Account.removeSubaccounts
(int... indices) Removes the subaccounts at the specified positions in this account'ssubaccounts list
.@NonNull ArrayList
<Subaccount> Course.removeSubaccounts
(int... indices) Removes the subaccounts at the specified positions in this course'ssubaccounts list
.@NonNull ArrayList
<Subaccount> GradesTable.removeSubaccounts
(int... indices) Removes the subaccounts at the specified positions in this account'ssubaccounts list
.Methods in page.codeberg.friedolyn.grades with parameters of type SubaccountModifier and TypeMethodDescriptionvoid
Account.addSubaccount
(@NonNull Subaccount subaccount) Inserts the specifiedSubaccount
at the end of this account'ssubaccounts list
.void
Course.addSubaccount
(@NonNull Subaccount subaccount) Inserts the specifiedSubaccount
at the end of this course'ssubaccounts list
.void
GradesTable.addSubaccount
(@NonNull Subaccount subaccount) Inserts the specifiedSubaccount
at the end of this account'ssubaccounts list
.void
Account.addSubaccounts
(@NonNull Subaccount... subaccounts) Inserts the specifiedSubaccount
s at the end of this account'ssubaccounts list
, in the given order.void
Course.addSubaccounts
(@NonNull Subaccount... subaccounts) Inserts the specifiedSubaccount
s at the end of this course'ssubaccounts list
, in the given order.void
GradesTable.addSubaccounts
(@NonNull Subaccount... subaccounts) Inserts the specifiedSubaccount
s at the end of this account'ssubaccounts list
, in the given order.boolean
Account.removeSubaccount
(@NonNull Subaccount subaccount) Removes the first occurrence of the specifiedSubaccount
from this account'ssubaccounts list
, if it is present.boolean
Course.removeSubaccount
(@NonNull Subaccount subaccount) Removes the first occurrence of the specifiedSubaccount
from this course'ssubaccounts list
, if it is present.boolean
GradesTable.removeSubaccount
(@NonNull Subaccount subaccount) Removes the first occurrence of the specifiedSubaccount
from this account'ssubaccounts list
, if it is present.boolean
Account.removeSubaccounts
(@NonNull Subaccount... subaccounts) Removes the specifiedSubaccount
s from this account'ssubaccounts list
, if they are present.boolean
Course.removeSubaccounts
(@NonNull Subaccount... subaccounts) Removes the specifiedSubaccount
s from this course'ssubaccounts list
, if they are present.boolean
GradesTable.removeSubaccounts
(@NonNull Subaccount... subaccounts) Removes the specifiedSubaccount
s from this account'ssubaccounts list
, if they are present.