Uses of Enum Class
fr.utc.miage.sporttrack.entity.enumeration.FriendshipStatus
Packages that use FriendshipStatus
Package
Description
-
Uses of FriendshipStatus in fr.utc.miage.sporttrack.entity.enumeration
Methods in fr.utc.miage.sporttrack.entity.enumeration that return FriendshipStatusModifier and TypeMethodDescriptionstatic 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. -
Uses of FriendshipStatus in fr.utc.miage.sporttrack.entity.user.communication
Methods in fr.utc.miage.sporttrack.entity.user.communication that return FriendshipStatusModifier and TypeMethodDescriptionFriendship.getStatus()Returns the current status of this friendship.Methods in fr.utc.miage.sporttrack.entity.user.communication with parameters of type FriendshipStatusModifier and TypeMethodDescriptionvoidFriendship.setStatus(FriendshipStatus status) Sets the status of this friendship.Constructors in fr.utc.miage.sporttrack.entity.user.communication with parameters of type FriendshipStatusModifierConstructorDescriptionFriendship(Athlete initiator, Athlete recipient, FriendshipStatus status) Constructs a new friendship with the specified initiator, recipient, and initial status. -
Uses of FriendshipStatus in fr.utc.miage.sporttrack.repository.user.communication
Methods in fr.utc.miage.sporttrack.repository.user.communication with parameters of type FriendshipStatusModifier and TypeMethodDescriptionFriendshipRepository.findByAthleteAndStatus(Integer athleteId, FriendshipStatus status) Finds all friendships for a given athlete and status, regardless of direction.FriendshipRepository.findByInitiatorAndStatus(Athlete initiator, FriendshipStatus status) Finds all friendships in which the specified athlete is the initiator and the relationship has the given status.FriendshipRepository.findByRecipientAndStatus(Athlete recipient, FriendshipStatus status) Finds all friendships in which the specified athlete is the recipient and the relationship has the given status.