Uses of Class
page.codeberg.friedolyn.grades.Module
Packages that use Module
-
Uses of Module in page.codeberg.friedolyn.client.parser
Methods in page.codeberg.friedolyn.client.parser that return ModuleModifier and TypeMethodDescriptionprivate static @NonNull ModuleParser.parseModuleTable(@NonNull org.jsoup.nodes.Element table) Extracts the module information from the given HTML module table included in the grades table. -
Uses of Module in page.codeberg.friedolyn.grades
Fields in page.codeberg.friedolyn.grades with type parameters of type ModuleModifier and TypeFieldDescriptionAccount.MODULESThe modules that are part of this account but not of anysubaccounts.Course.MODULESThe modules that are part of this course but not of anyaccounts.GradesTable.MODULESThe modules that are part of this grade table but not of anycourses.Subaccount.MODULESThe modules that are part of this account.Methods in page.codeberg.friedolyn.grades that return ModuleModifier and TypeMethodDescription@NonNull ModuleAccount.removeModule(int index) Removes the module at the specified position in this account'smodules list.@NonNull ModuleCourse.removeModule(int index) Removes the module at the specified position in this course'smodules list.@NonNull ModuleGradesTable.removeModule(int index) Removes the module at the specified position in this grade table'smodules list.@NonNull ModuleSubaccount.removeModule(int index) Removes the module at the specified position in this subaccount'smodules list.Methods in page.codeberg.friedolyn.grades that return types with arguments of type ModuleModifier and TypeMethodDescriptionAccount.getModules()Course.getModules()Subaccount.getModules()Account.getOrphanModules()Course.getOrphanModules()GradesTable.getOrphanModules()Account.removeModules(int... indices) Removes the modules at the specified positions in this account'smodules list.Course.removeModules(int... indices) Removes the modules at the specified positions in this course'smodules list.GradesTable.removeModules(int... indices) Removes the modules at the specified positions in this grade table'smodules list.Subaccount.removeModules(int... indices) Removes the modules at the specified positions in this subaccount'smodules list.Methods in page.codeberg.friedolyn.grades with parameters of type ModuleModifier and TypeMethodDescriptionvoidAdds aModuleto the end of this account'smodules list.voidAdds aModuleto the end of this course'smodules list.voidAdds aModuleto the end of this grade table'smodules list.voidAdds aModuleto the end of this subaccount'smodules list.voidAccount.addModules(@NonNull Module... modules) Adds the specifiedModules to the end of this account'smodules list.voidCourse.addModules(@NonNull Module... modules) Adds the specifiedModules to the end of this course'smodules list.voidGradesTable.addModules(@NonNull Module... modules) Adds the specifiedModules to the end of this grade table'smodules list.voidSubaccount.addModules(@NonNull Module... modules) Adds the specifiedModules to the end of this subaccount'smodules list.booleanAccount.removeModule(@NonNull Module module) Removes the first occurrence of the specifiedModulefrom this account'smodules list, if it is present.booleanCourse.removeModule(@NonNull Module module) Removes the first occurrence of the specifiedModulefrom this course'smodules list, if it is present.booleanGradesTable.removeModule(@NonNull Module module) Removes the first occurrence of the specifiedModulefrom this grade table'smodules list, if it is present.booleanSubaccount.removeModule(@NonNull Module module) Removes the first occurrence of the specifiedModulefrom this subaccount'smodules list, if it is present.booleanAccount.removeModules(@NonNull Module... modules) Removes the specifiedModules from this account'smodules list, if they are present.booleanCourse.removeModules(@NonNull Module... modules) Removes the specifiedModules from this course'smodules list, if they are present.booleanGradesTable.removeModules(@NonNull Module... modules) Removes the specifiedModules from this grade table'smodules list, if they are present.booleanSubaccount.removeModules(@NonNull Module... modules) Removes the specifiedModulesfrom this subaccount'smodules list, if they are present.