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 Module
Parser.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.MODULES
The modules that are part of this account but not of anysubaccounts
.Course.MODULES
The modules that are part of this course but not of anyaccounts
.GradesTable.MODULES
The modules that are part of this grade table but not of anycourses
.Subaccount.MODULES
The modules that are part of this account.Methods in page.codeberg.friedolyn.grades that return ModuleModifier and TypeMethodDescription@NonNull Module
Account.removeModule
(int index) Removes the module at the specified position in this account'smodules list
.@NonNull Module
Course.removeModule
(int index) Removes the module at the specified position in this course'smodules list
.@NonNull Module
GradesTable.removeModule
(int index) Removes the module at the specified position in this grade table'smodules list
.@NonNull Module
Subaccount.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 TypeMethodDescriptionvoid
Adds aModule
to the end of this account'smodules list
.void
Adds aModule
to the end of this course'smodules list
.void
Adds aModule
to the end of this grade table'smodules list
.void
Adds aModule
to the end of this subaccount'smodules list
.void
Account.addModules
(@NonNull Module... modules) Adds the specifiedModule
s to the end of this account'smodules list
.void
Course.addModules
(@NonNull Module... modules) Adds the specifiedModule
s to the end of this course'smodules list
.void
GradesTable.addModules
(@NonNull Module... modules) Adds the specifiedModule
s to the end of this grade table'smodules list
.void
Subaccount.addModules
(@NonNull Module... modules) Adds the specifiedModule
s to the end of this subaccount'smodules list
.boolean
Account.removeModule
(@NonNull Module module) Removes the first occurrence of the specifiedModule
from this account'smodules list
, if it is present.boolean
Course.removeModule
(@NonNull Module module) Removes the first occurrence of the specifiedModule
from this course'smodules list
, if it is present.boolean
GradesTable.removeModule
(@NonNull Module module) Removes the first occurrence of the specifiedModule
from this grade table'smodules list
, if it is present.boolean
Subaccount.removeModule
(@NonNull Module module) Removes the first occurrence of the specifiedModule
from this subaccount'smodules list
, if it is present.boolean
Account.removeModules
(@NonNull Module... modules) Removes the specifiedModule
s from this account'smodules list
, if they are present.boolean
Course.removeModules
(@NonNull Module... modules) Removes the specifiedModule
s from this course'smodules list
, if they are present.boolean
GradesTable.removeModules
(@NonNull Module... modules) Removes the specifiedModule
s from this grade table'smodules list
, if they are present.boolean
Subaccount.removeModules
(@NonNull Module... modules) Removes the specifiedModules
from this subaccount'smodules list
, if they are present.