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

net.dv8tion.jda.api.entities.channel.forums.ForumTagData 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.entities.channel.forums;

import net.dv8tion.jda.api.entities.emoji.Emoji;
import net.dv8tion.jda.api.entities.emoji.EmojiUnion;
import net.dv8tion.jda.api.managers.channel.concrete.ForumChannelManager;
import net.dv8tion.jda.api.utils.data.DataObject;
import net.dv8tion.jda.internal.utils.Checks;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.List;

/**
 * Data class used to create or update existing forum tags.
 *
 * @see ForumChannelManager#setAvailableTags(List)
 */
public class ForumTagData implements BaseForumTag
{
    private String name;
    private Emoji emoji;
    private boolean moderated;
    private long id;

    /**
     * Create a new {@link ForumTagData} instance.
     *
     * @param name
     *        The tag name (1-{@value ForumTag#MAX_NAME_LENGTH} characters)
     *
     * @throws IllegalArgumentException
     *         If the provided name is null or not between 1 and  {@value ForumTag#MAX_NAME_LENGTH} characters long
     */
    public ForumTagData(@Nonnull String name)
    {
        setName(name);
    }

    /**
     * Creates a new {@link ForumTagData} instance based on the provided {@link BaseForumTag}.
     * 
This also binds to the id of the provided tag, if available. * * @param tag * The base tag to use * * @throws IllegalArgumentException * If null is provided or the tag has an invalid name * * @return The new {@link ForumTagData} instance */ @Nonnull public static ForumTagData from(@Nonnull BaseForumTag tag) { Checks.notNull(tag, "Tag"); ForumTagData data = new ForumTagData(tag.getName()) .setEmoji(tag.getEmoji()) .setModerated(tag.isModerated()); if (tag instanceof ForumTagSnowflake) data.id = ((ForumTagSnowflake) tag).getIdLong(); return data; } /** * Set the new tag name to use. * * @param name * The new tag name (1-{@value ForumTag#MAX_NAME_LENGTH} characters) * * @throws IllegalArgumentException * If the provided name is null or not between 1 and {@value ForumTag#MAX_NAME_LENGTH} characters long * * @return The updated ForumTagData instance */ @Nonnull public ForumTagData setName(@Nonnull String name) { Checks.notEmpty(name, "Name"); Checks.notLonger(name, ForumTag.MAX_NAME_LENGTH, "Name"); this.name = name; return this; } /** * Set whether the tag can only be applied by forum moderators. * * @param moderated * True, if the tag is restricted to moderators * * @return The updated ForumTagData instance * * @see #isModerated() */ @Nonnull public ForumTagData setModerated(boolean moderated) { this.moderated = moderated; return this; } /** * Set the emoji to use for this tag. *
This emoji is displayed as an icon attached to the tag. * * @param emoji * The emoji icon of the tag * * @return The updated ForumTagData instance */ @Nonnull public ForumTagData setEmoji(@Nullable Emoji emoji) { this.emoji = emoji; return this; } @Nonnull @Override public String getName() { return name; } @Override public boolean isModerated() { return moderated; } @Nullable @Override public EmojiUnion getEmoji() { return (EmojiUnion) emoji; } @Nonnull @Override public DataObject toData() { DataObject json = BaseForumTag.super.toData(); if (id != 0) json.put("id", Long.toUnsignedString(id)); return json; } @Override public String toString() { return toData().toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy