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_ACCOUNTSThe subaccounts that are part of this account and may contain their ownModules.private final @NonNull ArrayList<Subaccount> Course.SUBACCOUNTSprivate final @NonNull ArrayList<Subaccount> GradesTable.SUBACCOUNTSMethods in page.codeberg.friedolyn.grades that return SubaccountModifier and TypeMethodDescription@NonNull SubaccountAccount.removeSubaccount(int index) Removes the subaccount at the specified position in this account'ssubaccounts list.@NonNull SubaccountCourse.removeSubaccount(int index) Removes the subaccount at the specified position in this course'ssubaccounts list.@NonNull SubaccountGradesTable.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 TypeMethodDescriptionvoidAccount.addSubaccount(@NonNull Subaccount subaccount) Inserts the specifiedSubaccountat the end of this account'ssubaccounts list.voidCourse.addSubaccount(@NonNull Subaccount subaccount) Inserts the specifiedSubaccountat the end of this course'ssubaccounts list.voidGradesTable.addSubaccount(@NonNull Subaccount subaccount) Inserts the specifiedSubaccountat the end of this account'ssubaccounts list.voidAccount.addSubaccounts(@NonNull Subaccount... subaccounts) Inserts the specifiedSubaccounts at the end of this account'ssubaccounts list, in the given order.voidCourse.addSubaccounts(@NonNull Subaccount... subaccounts) Inserts the specifiedSubaccounts at the end of this course'ssubaccounts list, in the given order.voidGradesTable.addSubaccounts(@NonNull Subaccount... subaccounts) Inserts the specifiedSubaccounts at the end of this account'ssubaccounts list, in the given order.booleanAccount.removeSubaccount(@NonNull Subaccount subaccount) Removes the first occurrence of the specifiedSubaccountfrom this account'ssubaccounts list, if it is present.booleanCourse.removeSubaccount(@NonNull Subaccount subaccount) Removes the first occurrence of the specifiedSubaccountfrom this course'ssubaccounts list, if it is present.booleanGradesTable.removeSubaccount(@NonNull Subaccount subaccount) Removes the first occurrence of the specifiedSubaccountfrom this account'ssubaccounts list, if it is present.booleanAccount.removeSubaccounts(@NonNull Subaccount... subaccounts) Removes the specifiedSubaccounts from this account'ssubaccounts list, if they are present.booleanCourse.removeSubaccounts(@NonNull Subaccount... subaccounts) Removes the specifiedSubaccounts from this course'ssubaccounts list, if they are present.booleanGradesTable.removeSubaccounts(@NonNull Subaccount... subaccounts) Removes the specifiedSubaccounts from this account'ssubaccounts list, if they are present.