Class VoiceChannelUpdateNameEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.channel.voice.GenericVoiceChannelEvent
-
- net.dv8tion.jda.api.events.channel.voice.update.GenericVoiceChannelUpdateEvent<String>
-
- net.dv8tion.jda.api.events.channel.voice.update.VoiceChannelUpdateNameEvent
-
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<VoiceChannel,String>
public class VoiceChannelUpdateNameEvent extends GenericVoiceChannelUpdateEvent<String>
Indicates that aVoiceChannel
's name changed.Can be used to get affected VoiceChannel, affected Guild and previous name.
Identifier:
name
-
-
Field Summary
Fields Modifier and Type Field Description static String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description VoiceChannelUpdateNameEvent(JDA api, long responseNumber, VoiceChannel channel, String oldName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getNewName()
The new nameString
getNewValue()
The new valueString
getOldName()
The old nameString
getOldValue()
The old value-
Methods inherited from class net.dv8tion.jda.api.events.channel.voice.update.GenericVoiceChannelUpdateEvent
getEntity, getPropertyIdentifier, toString
-
Methods inherited from class net.dv8tion.jda.api.events.channel.voice.GenericVoiceChannelEvent
getChannel, 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.UpdateEvent
getEntityType
-
-
-
-
Field Detail
-
IDENTIFIER
public static final String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getOldValue
@Nonnull public String getOldValue()
Description copied from interface:UpdateEvent
The old value- Specified by:
getOldValue
in interfaceUpdateEvent<VoiceChannel,String>
- Overrides:
getOldValue
in classGenericVoiceChannelUpdateEvent<String>
- Returns:
- The old value
-
getNewValue
@Nonnull public String getNewValue()
Description copied from interface:UpdateEvent
The new value- Specified by:
getNewValue
in interfaceUpdateEvent<VoiceChannel,String>
- Overrides:
getNewValue
in classGenericVoiceChannelUpdateEvent<String>
- Returns:
- The new value
-
-