Uses of Enum Class
web.sportflow.friendship.FriendshipStatus
Packages that use FriendshipStatus
-
Uses of FriendshipStatus in web.sportflow.admin
Methods in web.sportflow.admin with parameters of type FriendshipStatusModifier and TypeMethodDescriptionAdminController.createFriendship(Long requesterId, Long addresseeId, FriendshipStatus status, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes) AdminController.updateFriendship(Long friendshipId, Long requesterId, Long addresseeId, FriendshipStatus status, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes) -
Uses of FriendshipStatus in web.sportflow.friendship
Methods in web.sportflow.friendship that return FriendshipStatusModifier and TypeMethodDescriptionFriendship.getStatus()static FriendshipStatusReturns the enum constant of this class with the specified name.static FriendshipStatus[]FriendshipStatus.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in web.sportflow.friendship with parameters of type FriendshipStatusModifier and TypeMethodDescriptionFriendshipRepository.findByAddresseeIdAndStatus(Long addresseeId, FriendshipStatus status) FriendshipRepository.findByRequesterIdAndStatus(Long requesterId, FriendshipStatus status) voidFriendship.setStatus(FriendshipStatus status) Constructors in web.sportflow.friendship with parameters of type FriendshipStatusModifierConstructorDescriptionFriendship(User requester, User addressee, FriendshipStatus status)