Class GenericGuildVoiceUpdateEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.guild.GenericGuildEvent
-
- net.dv8tion.jda.api.events.guild.voice.GenericGuildVoiceEvent
-
- net.dv8tion.jda.api.events.guild.voice.GenericGuildVoiceUpdateEvent
-
- All Implemented Interfaces:
GenericEvent,GuildVoiceUpdateEvent,UpdateEvent<Member,VoiceChannel>
- Direct Known Subclasses:
GuildVoiceJoinEvent,GuildVoiceLeaveEvent,GuildVoiceMoveEvent
public class GenericGuildVoiceUpdateEvent extends GenericGuildVoiceEvent implements GuildVoiceUpdateEvent
Requirements
These events require the
VOICE_STATECacheFlag to be enabled, which requires theGUILD_VOICE_STATESintent.createLight(String)disables that CacheFlag by default!Additionally, these events require the
MemberCachePolicyto cache the updated members. Discord does not specifically tell us about the updates, but merely tells us the member was updated and gives us the updated member object. In order to fire specific events like these we need to have the old member cached to compare against.
-
-
Field Summary
-
Fields inherited from interface net.dv8tion.jda.api.events.guild.voice.GuildVoiceUpdateEvent
IDENTIFIER
-
-
Constructor Summary
Constructors Constructor Description GenericGuildVoiceUpdateEvent(JDA api, long responseNumber, Member member, VoiceChannel left, VoiceChannel joined)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VoiceChannelgetChannelJoined()TheVoiceChannelthat was joinedVoiceChannelgetChannelLeft()TheVoiceChannelthat theMemberis moved fromMembergetEntity()The affected entityVoiceChannelgetNewValue()The new valueVoiceChannelgetOldValue()The old valuejava.lang.StringgetPropertyIdentifier()The field name for the updated propertyjava.lang.StringtoString()-
Methods inherited from class net.dv8tion.jda.api.events.guild.voice.GenericGuildVoiceEvent
getMember, getVoiceState
-
Methods inherited from class net.dv8tion.jda.api.events.guild.GenericGuildEvent
getGuild
-
Methods inherited from class net.dv8tion.jda.api.events.Event
getJDA, getResponseNumber
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.dv8tion.jda.api.events.GenericEvent
getJDA, getResponseNumber
-
Methods inherited from interface net.dv8tion.jda.api.events.guild.voice.GuildVoiceUpdateEvent
getGuild, getMember
-
Methods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
-
-
-
Constructor Detail
-
GenericGuildVoiceUpdateEvent
public GenericGuildVoiceUpdateEvent(@Nonnull JDA api, long responseNumber, @Nonnull Member member, @Nullable VoiceChannel left, @Nullable VoiceChannel joined)
-
-
Method Detail
-
getChannelLeft
@Nullable public VoiceChannel getChannelLeft()
Description copied from interface:GuildVoiceUpdateEventTheVoiceChannelthat theMemberis moved from- Specified by:
getChannelLeftin interfaceGuildVoiceUpdateEvent- Returns:
- The
VoiceChannel
-
getChannelJoined
@Nullable public VoiceChannel getChannelJoined()
Description copied from interface:GuildVoiceUpdateEventTheVoiceChannelthat was joined- Specified by:
getChannelJoinedin interfaceGuildVoiceUpdateEvent- Returns:
- The
VoiceChannel
-
getPropertyIdentifier
@Nonnull public java.lang.String getPropertyIdentifier()
Description copied from interface:UpdateEventThe field name for the updated propertyExample
@Override public void onGenericRoleUpdate(GenericRoleUpdateEvent event) { switch (event.getPropertyIdentifier()) { case RoleUpdateColorEvent.IDENTIFIER: System.out.printf("Updated color for role: %s%n", event); break; case RoleUpdatePositionEvent.IDENTIFIER: RoleUpdatePositionEvent update = (RoleUpdatePositionEvent) event; System.out.printf("Updated position for role: %s raw(%s->%s)%n", event, update.getOldPositionRaw(), update.getNewPositionRaw()); break; default: return; } }- Specified by:
getPropertyIdentifierin interfaceUpdateEvent<Member,VoiceChannel>- Returns:
- The name of the updated property
-
getEntity
@Nonnull public Member getEntity()
Description copied from interface:UpdateEventThe affected entity- Specified by:
getEntityin interfaceUpdateEvent<Member,VoiceChannel>- Returns:
- The affected entity
-
getOldValue
@Nullable public VoiceChannel getOldValue()
Description copied from interface:UpdateEventThe old value- Specified by:
getOldValuein interfaceUpdateEvent<Member,VoiceChannel>- Returns:
- The old value
-
getNewValue
@Nullable public VoiceChannel getNewValue()
Description copied from interface:UpdateEventThe new value- Specified by:
getNewValuein interfaceUpdateEvent<Member,VoiceChannel>- Returns:
- The new value
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-