Uses of Enum Class
web.sportflow.user.PracticeLevel
Packages that use PracticeLevel
-
Uses of PracticeLevel in web.sportflow.admin
Methods in web.sportflow.admin with parameters of type PracticeLevelModifier and TypeMethodDescriptionAdminController.createUser(String firstname, String lastname, String email, String password, Role role, Double weight, Double height, Sex sex, PracticeLevel level, LocalDate birthDate, String profileImagePath, List<Long> sportIds, List<Long> badgeIds, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes) AdminController.updateUser(Long userId, String firstname, String lastname, String email, String password, Role role, Double weight, Double height, Sex sex, PracticeLevel level, LocalDate birthDate, String profileImagePath, List<Long> sportIds, List<Long> badgeIds, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes) -
Uses of PracticeLevel in web.sportflow.user
Methods in web.sportflow.user that return PracticeLevelModifier and TypeMethodDescriptionUser.getLevel()static PracticeLevelReturns the enum constant of this class with the specified name.static PracticeLevel[]PracticeLevel.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in web.sportflow.user with parameters of type PracticeLevelModifier and TypeMethodDescriptionvoidUser.setLevel(PracticeLevel level) UserService.updateCurrentUserProfile(User currentUser, String firstname, String lastname, String email, Double weight, Double height, Sex sex, LocalDate birthDate, PracticeLevel level) UserController.updateProfile(User currentUser, String firstname, String lastname, String email, Double weight, Double height, Sex sex, PracticeLevel level, LocalDate birthDate, org.springframework.web.multipart.MultipartFile avatarFile, org.springframework.ui.Model model, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes) Constructors in web.sportflow.user with parameters of type PracticeLevelModifierConstructorDescriptionUser(String firstname, String lastname, String email, Double weight, Double height, Sex sex, LocalDate birthDate, PracticeLevel level) User(String firstname, String lastname, String email, String password, Double weight, Double height, Sex sex, LocalDate birthDate, PracticeLevel level)