Class StageInstanceUpdatePrivacyLevelEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.guild.GenericGuildEvent
-
- net.dv8tion.jda.api.events.stage.GenericStageInstanceEvent
-
- net.dv8tion.jda.api.events.stage.update.GenericStageInstanceUpdateEvent<StageInstance.PrivacyLevel>
-
- net.dv8tion.jda.api.events.stage.update.StageInstanceUpdatePrivacyLevelEvent
-
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<StageInstance,StageInstance.PrivacyLevel>
public class StageInstanceUpdatePrivacyLevelEvent extends GenericStageInstanceUpdateEvent<StageInstance.PrivacyLevel>
Indicates that aStageInstance
updated itsPrivacyLevel
.Can be used to retrieve the privacy level.
Identifier:
privacy_level
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description StageInstanceUpdatePrivacyLevelEvent(JDA api, long responseNumber, StageInstance stageInstance, StageInstance.PrivacyLevel previous)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StageInstance.PrivacyLevel
getNewValue()
The new valueStageInstance.PrivacyLevel
getOldValue()
The old value-
Methods inherited from class net.dv8tion.jda.api.events.stage.update.GenericStageInstanceUpdateEvent
getEntity, getPropertyIdentifier
-
Methods inherited from class net.dv8tion.jda.api.events.stage.GenericStageInstanceEvent
getChannel, getInstance
-
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, toString, 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 java.lang.String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StageInstanceUpdatePrivacyLevelEvent
public StageInstanceUpdatePrivacyLevelEvent(@Nonnull JDA api, long responseNumber, @Nonnull StageInstance stageInstance, @Nonnull StageInstance.PrivacyLevel previous)
-
-
Method Detail
-
getOldValue
@Nonnull public StageInstance.PrivacyLevel getOldValue()
Description copied from interface:UpdateEvent
The old value- Specified by:
getOldValue
in interfaceUpdateEvent<StageInstance,StageInstance.PrivacyLevel>
- Overrides:
getOldValue
in classGenericStageInstanceUpdateEvent<StageInstance.PrivacyLevel>
- Returns:
- The old value
-
getNewValue
@Nonnull public StageInstance.PrivacyLevel getNewValue()
Description copied from interface:UpdateEvent
The new value- Specified by:
getNewValue
in interfaceUpdateEvent<StageInstance,StageInstance.PrivacyLevel>
- Overrides:
getNewValue
in classGenericStageInstanceUpdateEvent<StageInstance.PrivacyLevel>
- Returns:
- The new value
-
-