Uses of Interface
org.javacord.api.entity.channel.ChannelCategory
-
Packages that use ChannelCategory Package Description org.javacord.api org.javacord.api.entity.channel org.javacord.api.entity.channel.internal org.javacord.api.entity.server org.javacord.api.event.channel.server -
-
Uses of ChannelCategory in org.javacord.api
Methods in org.javacord.api that return types with arguments of type ChannelCategory Modifier and Type Method Description default Collection<ChannelCategory>DiscordApi. getChannelCategories()Gets a collection with all channel categories of the bot.default Collection<ChannelCategory>DiscordApi. getChannelCategoriesByName(String name)Gets a collection with all channel categories with the given name.default Collection<ChannelCategory>DiscordApi. getChannelCategoriesByNameIgnoreCase(String name)Gets a collection with all channel categories with the given name.default Optional<ChannelCategory>DiscordApi. getChannelCategoryById(long id)Gets a channel category by its id.default Optional<ChannelCategory>DiscordApi. getChannelCategoryById(String id)Gets a channel category by its id. -
Uses of ChannelCategory in org.javacord.api.entity.channel
Methods in org.javacord.api.entity.channel that return types with arguments of type ChannelCategory Modifier and Type Method Description default Optional<ChannelCategory>Channel. asChannelCategory()Gets the channel as channel category.CompletableFuture<ChannelCategory>ChannelCategoryBuilder. create()Creates the channel category.Optional<ChannelCategory>Categorizable. getCategory()Gets the category of the channel.default Optional<ChannelCategory>ChannelCategory. getCurrentCachedInstance()default CompletableFuture<ChannelCategory>ChannelCategory. getLatestInstance()Methods in org.javacord.api.entity.channel with parameters of type ChannelCategory Modifier and Type Method Description ServerTextChannelBuilderServerTextChannelBuilder. setCategory(ChannelCategory category)Sets the category of the channel.ServerTextChannelUpdaterServerTextChannelUpdater. setCategory(ChannelCategory category)Queues the category to be updated.ServerVoiceChannelBuilderServerVoiceChannelBuilder. setCategory(ChannelCategory category)Sets the category of the channel.ServerVoiceChannelUpdaterServerVoiceChannelUpdater. setCategory(ChannelCategory category)Queues the category to be updated.CompletableFuture<Void>Categorizable. updateCategory(ChannelCategory category)Updates the category of the channel.default CompletableFuture<Void>ServerTextChannel. updateCategory(ChannelCategory category)Updates the category of the channel.default CompletableFuture<Void>ServerVoiceChannel. updateCategory(ChannelCategory category)Updates the category of the channel. -
Uses of ChannelCategory in org.javacord.api.entity.channel.internal
Methods in org.javacord.api.entity.channel.internal that return types with arguments of type ChannelCategory Modifier and Type Method Description CompletableFuture<ChannelCategory>ChannelCategoryBuilderDelegate. create()Creates the channel category.Methods in org.javacord.api.entity.channel.internal with parameters of type ChannelCategory Modifier and Type Method Description voidServerTextChannelBuilderDelegate. setCategory(ChannelCategory category)Sets the category of the channel.voidServerTextChannelUpdaterDelegate. setCategory(ChannelCategory category)Queues the category to be updated.voidServerVoiceChannelBuilderDelegate. setCategory(ChannelCategory category)Sets the category of the channel.voidServerVoiceChannelUpdaterDelegate. setCategory(ChannelCategory category)Queues the category to be updated. -
Uses of ChannelCategory in org.javacord.api.entity.server
Methods in org.javacord.api.entity.server that return types with arguments of type ChannelCategory Modifier and Type Method Description List<ChannelCategory>Server. getChannelCategories()Gets a sorted list (by position) with all channel categories of the server.default List<ChannelCategory>Server. getChannelCategoriesByName(String name)Gets a sorted list (by position) with all channel categories with the given name.default List<ChannelCategory>Server. getChannelCategoriesByNameIgnoreCase(String name)Gets a sorted list (by position) with all channel categories with the given name.default Optional<ChannelCategory>Server. getChannelCategoryById(long id)Gets a channel category by its id.default Optional<ChannelCategory>Server. getChannelCategoryById(String id)Gets a channel category by its id. -
Uses of ChannelCategory in org.javacord.api.event.channel.server
Methods in org.javacord.api.event.channel.server that return types with arguments of type ChannelCategory Modifier and Type Method Description Optional<ChannelCategory>ServerChannelChangePositionEvent. getNewCategory()Gets the new category of the channel.Optional<ChannelCategory>ServerChannelChangePositionEvent. getOldCategory()Gets the old category of the channel.
-