Uses of Interface
org.javacord.api.listener.user.UserAttachableListener
-
-
Uses of UserAttachableListener in org.javacord.api.listener.channel.server
Subinterfaces of UserAttachableListener in org.javacord.api.listener.channel.server Modifier and Type Interface Description interfaceServerChannelChangeOverwrittenPermissionsListenerThis listener listens to server channel overwritten permissions changes. -
Uses of UserAttachableListener in org.javacord.api.listener.channel.server.voice
Subinterfaces of UserAttachableListener in org.javacord.api.listener.channel.server.voice Modifier and Type Interface Description interfaceServerVoiceChannelMemberJoinListenerThis listener listens to users joining a server voice channel.interfaceServerVoiceChannelMemberLeaveListenerThis listener listens to users leaving a server voice channel. -
Uses of UserAttachableListener in org.javacord.api.listener.channel.user
Subinterfaces of UserAttachableListener in org.javacord.api.listener.channel.user Modifier and Type Interface Description interfacePrivateChannelCreateListenerThis listener listens to private channel creations.interfacePrivateChannelDeleteListenerThis listener listens to private channel deletions. -
Uses of UserAttachableListener in org.javacord.api.listener.interaction
Subinterfaces of UserAttachableListener in org.javacord.api.listener.interaction Modifier and Type Interface Description interfaceAutocompleteCreateListenerThis listener listens to autocomplete interaction creations.interfaceButtonClickListenerThis listener listens to button clicks.interfaceInteractionCreateListenerThis listener listens to interaction creations.interfaceMessageComponentCreateListenerThis listener listens to message component interaction creations.interfaceMessageContextMenuCommandListenerThis listener listens to message context menu interaction creations.interfaceModalSubmitListenerThis listener listens to modal submit interaction creations.interfaceSelectMenuChooseListenerThis listener listens to select menu choices.interfaceSlashCommandCreateListenerThis listener listens to slash command interaction creations.interfaceUserContextMenuCommandListenerThis listener listens to user context menu interaction creations. -
Uses of UserAttachableListener in org.javacord.api.listener.message
Subinterfaces of UserAttachableListener in org.javacord.api.listener.message Modifier and Type Interface Description interfaceMessageCreateListenerThis listener listens to message creations.interfaceMessageReplyListenerThis listener listens to message replies. -
Uses of UserAttachableListener in org.javacord.api.listener.message.reaction
Subinterfaces of UserAttachableListener in org.javacord.api.listener.message.reaction Modifier and Type Interface Description interfaceReactionAddListenerThis listener listens to reaction adding.interfaceReactionRemoveListenerThis listener listens to reaction deletions. -
Uses of UserAttachableListener in org.javacord.api.listener.server.member
Subinterfaces of UserAttachableListener in org.javacord.api.listener.server.member Modifier and Type Interface Description interfaceServerMemberBanListenerThis listener listens to server member bans.interfaceServerMemberJoinListenerThis listener listens to server member joins.interfaceServerMemberLeaveListenerThis listener listens to server member leaves.interfaceServerMemberUnbanListenerThis listener listens to server member unbans. -
Uses of UserAttachableListener in org.javacord.api.listener.server.role
Subinterfaces of UserAttachableListener in org.javacord.api.listener.server.role Modifier and Type Interface Description interfaceUserRoleAddListenerThis listener listens to users being added to a role.interfaceUserRoleRemoveListenerThis listener listens to users being removed from a role. -
Uses of UserAttachableListener in org.javacord.api.listener.user
Subinterfaces of UserAttachableListener in org.javacord.api.listener.user Modifier and Type Interface Description interfaceUserChangeActivityListenerThis listener listens to user activity changes.interfaceUserChangeAvatarListenerThis listener listens to user avatar changes.interfaceUserChangeDeafenedListenerThis listener listens to user deafened changes.interfaceUserChangeDiscriminatorListenerThis listener listens to user discriminator changes.interfaceUserChangeMutedListenerThis listener listens to user muted changes.interfaceUserChangeNameListenerThis listener listens to username changes.interfaceUserChangeNicknameListenerThis listener listens to user nickname changes.interfaceUserChangePendingListenerThis listener listens to user pending state changes (member screening pass).interfaceUserChangeSelfDeafenedListenerThis listener listens to user self-deafened changes.interfaceUserChangeSelfMutedListenerThis listener listens to user self-muted changes.interfaceUserChangeServerAvatarListenerThis listener listens to user server avatar changes.interfaceUserChangeStatusListenerThis listener listens to user status changes.interfaceUserChangeTimeoutListenerThis listener listens to user timeout changes.interfaceUserStartTypingListenerThis listener listens to users typing.Methods in org.javacord.api.listener.user with type parameters of type UserAttachableListener Modifier and Type Method Description <T extends UserAttachableListener & ObjectAttachableListener>
java.util.Collection<ListenerManager<T>>UserAttachableListenerManager. addUserAttachableListener(T listener)Adds a listener that implements one or moreUserAttachableListeners.<T extends UserAttachableListener & ObjectAttachableListener>
java.util.Map<T,java.util.List<java.lang.Class<T>>>UserAttachableListenerManager. getUserAttachableListeners()Gets a map with all registered listeners that implement one or moreUserAttachableListeners and their assigned listener classes they listen to.<T extends UserAttachableListener & ObjectAttachableListener>
voidUserAttachableListenerManager. removeListener(java.lang.Class<T> listenerClass, T listener)Removes a listener from this object.<T extends UserAttachableListener & ObjectAttachableListener>
voidUserAttachableListenerManager. removeUserAttachableListener(T listener)Removes a listener that implements one or moreUserAttachableListeners.
-