Interface ServerVoiceChannelMemberJoinEvent
-
- All Superinterfaces:
ChannelEvent,Event,ServerChannelEvent,ServerEvent,ServerVoiceChannelEvent,UserEvent,VoiceChannelEvent
public interface ServerVoiceChannelMemberJoinEvent extends ServerVoiceChannelEvent, UserEvent
A server voice channel member join event.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<ServerVoiceChannel>getOldChannel()Gets the old channel of the event.booleanisMove()Gets whether this event is part of a move.-
Methods inherited from interface org.javacord.api.event.channel.server.ServerChannelEvent
getServer
-
Methods inherited from interface org.javacord.api.event.channel.server.voice.ServerVoiceChannelEvent
getChannel
-
-
-
-
Method Detail
-
getOldChannel
java.util.Optional<ServerVoiceChannel> getOldChannel()
Gets the old channel of the event.- Returns:
- The old channel of the event.
-
isMove
boolean isMove()
Gets whether this event is part of a move.- Returns:
- whether this event is part of a move.
-
-