All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dv8tion.jda.api.requests.restaction.order.ChannelOrderAction Maven / Gradle / Ivy

Go to download

Java wrapper for the popular chat & VOIP service: Discord https://discord.com

There is a newer version: 5.1.0
Show newest version
/*
 * Copyright 2015 Austin Keener, Michael Ritter, Florian Spieß, and the JDA contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package net.dv8tion.jda.api.requests.restaction.order;

import net.dv8tion.jda.api.entities.Guild;
import net.dv8tion.jda.api.entities.channel.ChannelType;
import net.dv8tion.jda.api.entities.channel.concrete.Category;
import net.dv8tion.jda.api.entities.channel.middleman.GuildChannel;

import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.EnumSet;

/**
 * Implementation of {@link OrderAction OrderAction}
 * to modify the order of {@link GuildChannel Channels} for a {@link net.dv8tion.jda.api.entities.Guild Guild}.
 * 
To apply the changes you must finish the {@link net.dv8tion.jda.api.requests.RestAction RestAction}. * *

Before you can use any of the {@code move} methods * you must use either {@link #selectPosition(Object) selectPosition(GuildChannel)} or {@link #selectPosition(int)}! * * @since 3.0 * * @see net.dv8tion.jda.api.entities.Guild * @see net.dv8tion.jda.api.entities.Guild#modifyTextChannelPositions() * @see net.dv8tion.jda.api.entities.Guild#modifyVoiceChannelPositions() * @see net.dv8tion.jda.api.entities.Guild#modifyCategoryPositions() * @see CategoryOrderAction */ public interface ChannelOrderAction extends OrderAction { /** * The {@link net.dv8tion.jda.api.entities.Guild Guild} which holds * the channels from {@link #getCurrentOrder()} * * @return The corresponding {@link net.dv8tion.jda.api.entities.Guild Guild} */ @Nonnull Guild getGuild(); /** * The sorting bucket for this order action. *
Multiple different {@link ChannelType ChannelTypes} can * share a common sorting bucket. * * @return The sorting bucket */ int getSortBucket(); /** * The {@link ChannelType ChannelTypes} for the {@link #getSortBucket() sorting bucket}. * * @return The channel types * * @see ChannelType#fromSortBucket(int) */ @Nonnull default EnumSet getChannelTypes() { return ChannelType.fromSortBucket(getSortBucket()); } /** * Set the parent category for the currently selected channel. * * @param category * The new parent category, or null to not have any category * @param syncPermissions * Whether to sync the permissions of the channel to the new category * * @throws IllegalStateException * If no entity has been selected yet, use {@link #selectPosition(Object)} * @throws IllegalArgumentException * If the provided category is not in the same guild as the channel * * @return The current ChannelOrderAction */ @Nonnull @CheckReturnValue ChannelOrderAction setCategory(@Nullable Category category, boolean syncPermissions); /** * Set the parent category for the currently selected channel. * *

By default, this will not sync the permissions with the new category. * You can use {@link #setCategory(Category, boolean)} to sync permissions. * * @param category * The new parent category, or null to not have any category * * @throws IllegalStateException * If no entity has been selected yet, use {@link #selectPosition(Object)} * @throws IllegalArgumentException * If the provided category is not in the same guild as the channel * * @return The current ChannelOrderAction */ @Nonnull @CheckReturnValue default ChannelOrderAction setCategory(@Nullable Category category) { return setCategory(category, false); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy