Class CategoryUpdateNameEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.channel.category.GenericCategoryEvent
-
- net.dv8tion.jda.api.events.channel.category.update.GenericCategoryUpdateEvent<String>
-
- net.dv8tion.jda.api.events.channel.category.update.CategoryUpdateNameEvent
-
- All Implemented Interfaces:
GenericEvent,UpdateEvent<Category,String>
public class CategoryUpdateNameEvent extends GenericCategoryUpdateEvent<String>
Indicates that the name of aCategorywas updated.Can be used to retrieve the old name
Identifier:
name
-
-
Field Summary
Fields Modifier and Type Field Description static StringIDENTIFIER
-
Constructor Summary
Constructors Constructor Description CategoryUpdateNameEvent(JDA api, long responseNumber, Category category, String oldName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetNewName()The new name for thisCategoryStringgetNewValue()The new valueStringgetOldName()The previous name for thisCategoryStringgetOldValue()The old value-
Methods inherited from class net.dv8tion.jda.api.events.channel.category.update.GenericCategoryUpdateEvent
getEntity, getPropertyIdentifier, toString
-
Methods inherited from class net.dv8tion.jda.api.events.channel.category.GenericCategoryEvent
getCategory, getGuild, getId, getIdLong
-
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
-
getOldName
@Nonnull public String getOldName()
The previous name for thisCategory- Returns:
- The previous name
-
getOldValue
@Nonnull public String getOldValue()
Description copied from interface:UpdateEventThe old value- Specified by:
getOldValuein interfaceUpdateEvent<Category,String>- Overrides:
getOldValuein classGenericCategoryUpdateEvent<String>- Returns:
- The old value
-
getNewValue
@Nonnull public String getNewValue()
Description copied from interface:UpdateEventThe new value- Specified by:
getNewValuein interfaceUpdateEvent<Category,String>- Overrides:
getNewValuein classGenericCategoryUpdateEvent<String>- Returns:
- The new value
-
-