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<java.lang.String>
-
- net.dv8tion.jda.api.events.channel.category.update.CategoryUpdateNameEvent
-
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<Category,java.lang.String>
public class CategoryUpdateNameEvent extends GenericCategoryUpdateEvent<java.lang.String>
Indicates that the name of aCategory
was updated.Can be used to retrieve the old name
Identifier:
name
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description CategoryUpdateNameEvent(JDA api, long responseNumber, Category category, java.lang.String oldName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getNewName()
The new name for thisCategory
java.lang.String
getNewValue()
The new valuejava.lang.String
getOldName()
The previous name for thisCategory
java.lang.String
getOldValue()
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 java.lang.String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getOldName
@Nonnull public java.lang.String getOldName()
The previous name for thisCategory
- Returns:
- The previous name
-
getNewName
@Nonnull public java.lang.String getNewName()
The new name for thisCategory
- Returns:
- The new name
-
getOldValue
@Nonnull public java.lang.String getOldValue()
Description copied from interface:UpdateEvent
The old value- Specified by:
getOldValue
in interfaceUpdateEvent<Category,java.lang.String>
- Overrides:
getOldValue
in classGenericCategoryUpdateEvent<java.lang.String>
- Returns:
- The old value
-
getNewValue
@Nonnull public java.lang.String getNewValue()
Description copied from interface:UpdateEvent
The new value- Specified by:
getNewValue
in interfaceUpdateEvent<Category,java.lang.String>
- Overrides:
getNewValue
in classGenericCategoryUpdateEvent<java.lang.String>
- Returns:
- The new value
-
-