Interface Member
- All Superinterfaces:
Formattable
,IMentionable
,IPermissionHolder
,ISnowflake
Contains all guild-specific information about a User. (Roles, Nickname, VoiceStatus etc.)
- Since:
- 3.0
- See Also:
-
Guild.getMember(User)
Guild.getMemberCache()
Guild.getMemberById(long)
Guild.getMemberByTag(String)
Guild.getMemberByTag(String, String)
Guild.getMembersByEffectiveName(String, boolean)
Guild.getMembersByName(String, boolean)
Guild.getMembersByNickname(String, boolean)
Guild.getMembersWithRoles(Role...)
Guild.getMembers()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Template forgetAvatarUrl()
.static final int
Maximum number of days a Member can be timed out for -
Method Summary
Modifier and TypeMethodDescriptiondefault AuditableRestAction<Void>
ban
(int delDays) Bans this Member and deletes messages sent by the user based on the amount of delDays.default AuditableRestAction<Void>
Bans this Member and deletes messages sent by the user based on the amount of delDays.boolean
canInteract
(Emote emote) Whether this Member can interact with the providedEmote
(use in a message)boolean
canInteract
(Member member) Whether this Member can interact with the provided Member (kick/ban/etc.)boolean
canInteract
(Role role) Whether this Member can interact with the providedRole
(kick/ban/move/modify/delete/etc.)default AuditableRestAction<Void>
deafen
(boolean deafen) Sets the Guild Deafened state state of this Member based on the provided boolean.A Set of all activeClientTypes
of this Member.The activities of the user.The Discord Id for this member's per guild avatar image.default String
The URL for the member's per guild avatar image.getColor()
TheColor
of this Member's name in a Guild.int
The raw RGB value for the color of this member.The defaultTextChannel
for aMember
.default String
The URL for the member's effective avatar image.Retrieves the Name displayed in the official Discord Client.getGuild()
The Guild in which this Member is represented.getJDA()
The JDA instance.Returns the current nickname of this Member for the parent Guild.Returns theOnlineStatus
of the User.getOnlineStatus
(ClientType type) The platform dependentOnlineStatus
of this member.getRoles()
The roles applied to this Member.The time when this member boosted the guild.TheTime
this Member joined the Guild.The time this Member will be released from time out.getUser()
The user wrapped by this Entity.TheVoiceState
of this Member.boolean
Whether this member has accurategetTimeJoined()
information.boolean
isOwner()
Checks whether this member is the owner of its relatedGuild
.boolean
Checks whether this member has passed theGuild's
Membership Screening requirements.default boolean
Whether this Member is in time out.default AuditableRestAction<Void>
kick()
Kicks this Member from theGuild
.default AuditableRestAction<Void>
Kicks this Member from theGuild
.default AuditableRestAction<Void>
modifyNickname
(String nickname) Changes this Member's nickname in this guild.default AuditableRestAction<Void>
mute
(boolean mute) Sets the Guild Muted state state of this Member based on the provided boolean.default AuditableRestAction<Void>
Removes a time out from this Member in thisGuild
.default AuditableRestAction<Void>
timeoutFor
(long amount, TimeUnit unit) Puts this Member in time out in thisGuild
for a specific amount of time.default AuditableRestAction<Void>
timeoutFor
(Duration duration) Puts this Member in time out in thisGuild
for a specific amount of time.default AuditableRestAction<Void>
timeoutUntil
(TemporalAccessor temporal) Puts this Member in time out in thisGuild
until the specified date.Methods inherited from interface net.dv8tion.jda.api.entities.IMentionable
formatTo, getAsMention
Methods inherited from interface net.dv8tion.jda.api.entities.IPermissionHolder
canSync, canSync, getPermissions, getPermissions, getPermissionsExplicit, getPermissionsExplicit, hasAccess, hasPermission, hasPermission, hasPermission, hasPermission
Methods inherited from interface net.dv8tion.jda.api.entities.ISnowflake
getId, getIdLong, getTimeCreated
-
Field Details
-
AVATAR_URL
Template forgetAvatarUrl()
.- See Also:
-
MAX_TIME_OUT_LENGTH
static final int MAX_TIME_OUT_LENGTHMaximum number of days a Member can be timed out for- See Also:
-
-
Method Details
-
getUser
The user wrapped by this Entity.- Returns:
User
-
getGuild
The Guild in which this Member is represented.- Specified by:
getGuild
in interfaceIPermissionHolder
- Returns:
Guild
-
getJDA
The JDA instance.- Returns:
- The current JDA instance.
-
getTimeJoined
TheTime
this Member joined the Guild.
If the member was loaded through a presence update (lazy loading) this will be identical to the creation time of the guild. You can usehasTimeJoined()
to test whether this time can be relied on.You can use
guild.retrieveMemberById(member.getId())
to load the join time.- Returns:
- The time at which this user has joined the guild.
-
hasTimeJoined
boolean hasTimeJoined()Whether this member has accurategetTimeJoined()
information.
Discord doesn't always provide this information when we load members so we have to fallback to theGuild
creation time.You can use
guild.retrieveMemberById(member.getId())
to load the join time.- Returns:
- True, if
getTimeJoined()
is accurate
-
getTimeBoosted
The time when this member boosted the guild.
Null indicates this member is not currently boosting the guild.- Returns:
- The boosting time, or null if the member is not boosting
- Since:
- 4.0.0
-
getTimeOutEnd
The time this Member will be released from time out.
If this Member is not in time out, this returnsnull
. This may also return dates in the past, in which case the time out has expired.- Returns:
- The time this Member will be released from time out or
null
if not in time out
-
isTimedOut
default boolean isTimedOut()Whether this Member is in time out.
While a Member is in time out, all permissions exceptVIEW_CHANNEL
andMESSAGE_HISTORY
are removed from them.- Returns:
- True, if this Member is in time out
-
getVoiceState
TheVoiceState
of this Member.
This will be null when theCacheFlag.VOICE_STATE
is disabled manuallyThis can be used to get the Member's VoiceChannel using
GuildVoiceState.getChannel()
.This requires
CacheFlag.VOICE_STATE
to be enabled!- Returns:
GuildVoiceState
-
getActivities
The activities of the user.
If the user does not currently have any activity, this returns an empty list.This requires
CacheFlag.ACTIVITY
to be enabled!- Returns:
- Immutable list of
Activities
for the user
-
getOnlineStatus
Returns theOnlineStatus
of the User.
If theOnlineStatus
is unrecognized, will returnUNKNOWN
.This will always return
OnlineStatus.OFFLINE
ifCacheFlag.ONLINE_STATUS
is disabled.- Returns:
- The current
OnlineStatus
of theUser
.
-
getOnlineStatus
The platform dependentOnlineStatus
of this member.
Since a user can be connected from multiple different devices such as web and mobile, discord specifies a status for eachClientType
.If a user is not online on the specified type,
OFFLINE
is returned.This requires
CacheFlag.CLIENT_STATUS
to be enabled!- Parameters:
type
- The type of client- Returns:
- The status for that specific client or OFFLINE
- Throws:
IllegalArgumentException
- If the provided type is null- Since:
- 4.0.0
-
getActiveClients
A Set of all activeClientTypes
of this Member. EveryOnlineStatus
other thanOFFLINE
andUNKNOWN
is interpreted as active. SinceINVISIBLE
is only possible for the SelfUser, other Members will never have ClientTypes show as active when actually beingINVISIBLE
, since they will show asOFFLINE
.
If the Member is currently not active with any Client, this returns an empty Set.
WhenCacheFlag.CLIENT_STATUS
is disabled, active clients will not be tracked and this will always return an empty Set.
Since a user can be connected from multiple different devices such as web and mobile, discord specifies a status for eachClientType
.- Returns:
- EnumSet of all active
ClientTypes
- Since:
- 4.0.0
-
getNickname
Returns the current nickname of this Member for the parent Guild.This can be changed using
modifyNickname(Member, String)
.- Returns:
- The nickname or null, if no nickname is set.
-
getEffectiveName
Retrieves the Name displayed in the official Discord Client.- Returns:
- The Nickname of this Member or the Username if no Nickname is present.
-
getAvatarId
The Discord Id for this member's per guild avatar image. If the member has not set a per guild avatar, this will return null.- Returns:
- Possibly-null String containing the
Member
per guild avatar id.
-
getAvatarUrl
The URL for the member's per guild avatar image. If the member has not set a per guild avatar, this will return null.- Returns:
- Possibly-null String containing the
Member
per guild avatar url.
-
getEffectiveAvatarUrl
The URL for the member's effective avatar image. If they do not have a per guild avatar set, this will return the URL of their effectiveUser
avatar.- Returns:
- Never-null String containing the
Member
avatar url.
-
getRoles
The roles applied to this Member.
The roles are ordered based on their position. The highest role being at index 0 and the lowest at the last index.A Member's roles can be changed using the
Guild.addRoleToMember(Member, Role)
,Guild.removeRoleFromMember(Member, Role)
, andGuild.modifyMemberRoles(Member, Collection, Collection)
methods inGuild
.The Public Role (
@everyone
) is not included in the returned immutable list of roles
It is implicit that every member holds the Public Role in a Guild thus it is not listed here!- Returns:
- An immutable List of
Roles
for this Member. - See Also:
-
getColor
TheColor
of this Member's name in a Guild.This is determined by the color of the highest role assigned to them that does not have the default color.
If all roles have default color, this returns null.- Returns:
- The display Color for this Member.
- See Also:
-
getColorRaw
int getColorRaw()The raw RGB value for the color of this member.
Defaulting toRole.DEFAULT_COLOR_RAW
if this member uses the default color (special property, it changes depending on theme used in the client)- Returns:
- The raw RGB value or the role default
-
canInteract
Whether this Member can interact with the provided Member (kick/ban/etc.)- Parameters:
member
- The target Member to check- Returns:
- True, if this Member is able to interact with the specified Member
- Throws:
NullPointerException
- if the specified Member is nullIllegalArgumentException
- if the specified Member is not from the same guild
-
canInteract
Whether this Member can interact with the providedRole
(kick/ban/move/modify/delete/etc.)If this returns true this member can assign the role to other members.
- Parameters:
role
- The target Role to check- Returns:
- True, if this member is able to interact with the specified Role
- Throws:
NullPointerException
- if the specified Role is nullIllegalArgumentException
- if the specified Role is not from the same guild
-
canInteract
Whether this Member can interact with the providedEmote
(use in a message)- Parameters:
emote
- The target Emote to check- Returns:
- True, if this Member is able to interact with the specified Emote
- Throws:
NullPointerException
- if the specified Emote is nullIllegalArgumentException
- if the specified Emote is not from the same guild
-
isOwner
boolean isOwner()Checks whether this member is the owner of its relatedGuild
.- Returns:
- True, if this member is the owner of the attached Guild.
-
isPending
Checks whether this member has passed theGuild's
Membership Screening requirements.- Returns:
- True, if this member hasn't passed the guild's Membership Screening requirements
- Since:
- 4.2.1
- Incubating:
- Discord is still trying to figure this out
-
getDefaultChannel
The defaultTextChannel
for aMember
.
This is the channel that the Discord client will default to opening when a Guild is opened for the first time after joining the guild.
The default channel is the channel with the highest position in which the member hasPermission.VIEW_CHANNEL
permissions. If this requirement doesn't apply for any channel in the guild, this method returnsnull
.- Returns:
- The
TextChannel
representing the default channel for this member or null if no such channel exists.
-
ban
Bans this Member and deletes messages sent by the user based on the amount of delDays.
If you wish to ban a member without deleting any messages, provide delDays with a value of 0.You can unban a user with
Guild.unban(User)
.Note:
Guild.getMembers()
will still contain theMember
until Discord sends theGuildMemberRemoveEvent
.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The target Member cannot be banned due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the task
- Parameters:
delDays
- The history of messages, in days, that will be deleted.- Returns:
AuditableRestAction
- Throws:
InsufficientPermissionException
- If the logged in account does not have thePermission.BAN_MEMBERS
permission.HierarchyException
- If the logged in account cannot ban the other user due to permission hierarchy position.
SeecanInteract(Member)
IllegalArgumentException
-- If the provided amount of days (delDays) is less than 0.
- If the provided amount of days (delDays) is bigger than 7.
- Since:
- 4.0.0
-
ban
@Nonnull @CheckReturnValue default AuditableRestAction<Void> ban(int delDays, @Nullable String reason) Bans this Member and deletes messages sent by the user based on the amount of delDays.
If you wish to ban a member without deleting any messages, provide delDays with a value of 0.You can unban a user with
Guild.unban(User)
.Note:
Guild.getMembers()
will still contain theMember
until Discord sends theGuildMemberRemoveEvent
.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The target Member cannot be banned due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the task
- Parameters:
delDays
- The history of messages, in days, that will be deleted.reason
- The reason for this action ornull
if there is no specified reason- Returns:
AuditableRestAction
- Throws:
InsufficientPermissionException
- If the logged in account does not have thePermission.BAN_MEMBERS
permission.HierarchyException
- If the logged in account cannot ban the other user due to permission hierarchy position.
SeecanInteract(Member)
IllegalArgumentException
-- If the provided amount of days (delDays) is less than 0.
- If the provided amount of days (delDays) is bigger than 7.
- If the provided reason is longer than 512 characters.
- Since:
- 4.0.0
-
kick
Kicks this Member from theGuild
.Note:
Guild.getMembers()
will still contain theUser
until Discord sends theGuildMemberRemoveEvent
.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The target Member cannot be kicked due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the task
- Returns:
AuditableRestAction
Kicks the provided Member from the current Guild- Throws:
InsufficientPermissionException
- If the logged in account does not have thePermission.KICK_MEMBERS
permission.HierarchyException
- If the logged in account cannot kick the other member due to permission hierarchy position.
SeecanInteract(Member)
- Since:
- 4.0.0
-
kick
Kicks this Member from theGuild
.Note:
Guild.getMembers()
will still contain theMember
until Discord sends theGuildMemberRemoveEvent
.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The target Member cannot be kicked due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the task
- Parameters:
reason
- The reason for this action ornull
if there is no specified reason- Returns:
AuditableRestAction
Kicks the provided Member from the current Guild- Throws:
InsufficientPermissionException
- If the logged in account does not have thePermission.KICK_MEMBERS
permission.HierarchyException
- If the logged in account cannot kick the other member due to permission hierarchy position.
SeecanInteract(Member)
IllegalArgumentException
- If the provided reason is longer than 512 characters- Since:
- 4.0.0
-
timeoutFor
@Nonnull @CheckReturnValue default AuditableRestAction<Void> timeoutFor(long amount, @Nonnull TimeUnit unit) Puts this Member in time out in thisGuild
for a specific amount of time.
While a Member is in time out, all permissions exceptVIEW_CHANNEL
andMESSAGE_HISTORY
are removed from them.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The target Member cannot be put into time out due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the task
- Parameters:
amount
- The amount of the providedunit
to put this Member in time out forunit
- TheUnit
type ofamount
- Returns:
AuditableRestAction
- Throws:
InsufficientPermissionException
- If the logged in account does not have thePermission.MODERATE_MEMBERS
permission.IllegalArgumentException
- If any of the following checks are true- The provided
amount
is lower than or equal to0
- The provided
unit
is null - The provided
amount
with theunit
results in a date that is more than 28 days in the future
- The provided
-
timeoutFor
Puts this Member in time out in thisGuild
for a specific amount of time.
While a Member is in time out, all permissions exceptVIEW_CHANNEL
andMESSAGE_HISTORY
are removed from them.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The target Member cannot be put into time out due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the task
- Parameters:
duration
- The duration to put this Member in time out for- Returns:
AuditableRestAction
- Throws:
InsufficientPermissionException
- If the logged in account does not have thePermission.MODERATE_MEMBERS
permission.IllegalArgumentException
- If any of the following checks are true- The provided
duration
is null - The provided
duration
is not positive - The provided
duration
results in a date that is more than 28 days in the future
- The provided
-
timeoutUntil
@Nonnull @CheckReturnValue default AuditableRestAction<Void> timeoutUntil(@Nullable TemporalAccessor temporal) Puts this Member in time out in thisGuild
until the specified date.
While a Member is in time out, all permissions exceptVIEW_CHANNEL
andMESSAGE_HISTORY
are removed from them.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The target Member cannot be put into time out due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the task
- Parameters:
temporal
- The time this Member will be released from time out, or null to remove the time out- Returns:
AuditableRestAction
- Throws:
InsufficientPermissionException
- If the logged in account does not have thePermission.MODERATE_MEMBERS
permission.IllegalArgumentException
- If any of the following checks are true- The provided
temporal
is in the past - The provided
temporal
is more than 28 days in the future
- The provided
-
removeTimeout
Removes a time out from this Member in thisGuild
.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The time out cannot be removed due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the task
- Returns:
AuditableRestAction
- Throws:
InsufficientPermissionException
- If the logged in account does not have thePermission.MODERATE_MEMBERS
permission.
-
mute
Sets the Guild Muted state state of this Member based on the provided boolean.Note: The Member's
GuildVoiceState.isGuildMuted()
value won't change until JDA receives theGuildVoiceGuildMuteEvent
event related to this change.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The target Member cannot be muted due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the taskUSER_NOT_CONNECTED
The specified Member is not connected to a voice channel
- Parameters:
mute
- Whether thisMember
should be muted or unmuted.- Returns:
AuditableRestAction
- Throws:
InsufficientPermissionException
- If the logged in account does not have thePermission.VOICE_DEAF_OTHERS
permission.IllegalStateException
- If the member is not currently connected to a voice channel.- Since:
- 4.0.0
-
deafen
Sets the Guild Deafened state state of this Member based on the provided boolean.Note: The Member's
GuildVoiceState.isGuildDeafened()
value won't change until JDA receives theGuildVoiceGuildDeafenEvent
event related to this change.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The target Member cannot be deafened due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the taskUSER_NOT_CONNECTED
The specified Member is not connected to a voice channel
- Parameters:
deafen
- Whether thisMember
should be deafened or undeafened.- Returns:
AuditableRestAction
- Throws:
InsufficientPermissionException
- If the logged in account does not have thePermission.VOICE_DEAF_OTHERS
permission.IllegalStateException
- If the member is not currently connected to a voice channel.- Since:
- 4.0.0
-
modifyNickname
@Nonnull @CheckReturnValue default AuditableRestAction<Void> modifyNickname(@Nullable String nickname) Changes this Member's nickname in this guild. The nickname is visible to all members of this guild.To change the nickname for the currently logged in account only the Permission
NICKNAME_CHANGE
is required.
To change the nickname of anyMember
for thisGuild
the PermissionNICKNAME_MANAGE
is required.Possible
ErrorResponses
caused by the returnedRestAction
include the following:MISSING_PERMISSIONS
The nickname of the target Member is not modifiable due to a permission discrepancyUNKNOWN_MEMBER
The specified Member was removed from the Guild before finishing the task
- Parameters:
nickname
- The new nickname of theMember
, providenull
or an empty String to reset the nickname- Returns:
AuditableRestAction
- Throws:
InsufficientPermissionException
-- If attempting to set nickname for self and the logged in account has neither
Permission.NICKNAME_CHANGE
orPermission.NICKNAME_MANAGE
- If attempting to set nickname for another member and the logged in account does not have
Permission.NICKNAME_MANAGE
- If attempting to set nickname for self and the logged in account has neither
HierarchyException
- If attempting to set nickname for another member and the logged in account cannot manipulate the other user due to permission hierarchy position.
SeecanInteract(Member)
.- Since:
- 4.0.0
-