net.dv8tion.jda.api.interactions.components.ActionComponent Maven / Gradle / Ivy
Show all versions of JDA Show documentation
/*
* 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.interactions.components;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
/**
* Component which supports interactions via {@link ComponentInteraction}.
*/
public interface ActionComponent extends ItemComponent
{
/**
* The component ID or null.
*
Some components such as link buttons don't have this.
*
* This need not be a numeric ID! All these component IDs are custom and user-provided data,
* unlike other IDs generated by Discord. This ID is used for event handling with {@link ComponentInteraction#getComponentId()}.
*
* @return The component ID or null if not present
*
* @see ComponentInteraction#getComponentId()
*/
@Nullable
String getId();
/**
* Whether this action component is disabled.
*
*
You can use {@link #asDisabled()} or {@link #asEnabled()} to create enabled/disabled instances.
*
* @return True, if this button is disabled
*/
boolean isDisabled();
/**
* Returns a copy of this component with {@link #isDisabled()} set to true.
*
* @return New disabled component instance
*/
@Nonnull
@CheckReturnValue
default ActionComponent asDisabled()
{
return withDisabled(true);
}
/**
* Returns a copy of this component with {@link #isDisabled()} set to false.
*
* @return New enabled component instance
*/
@Nonnull
@CheckReturnValue
default ActionComponent asEnabled()
{
return withDisabled(false);
}
/**
* Returns a copy of this component with {@link #isDisabled()} set to the provided value.
*
* @param disabled
* True, if this component should be disabled
*
* @throws UnsupportedOperationException
* If this component type cannot be disabled
*
* @return New enabled/disabled component instance
*/
@Nonnull
@CheckReturnValue
ActionComponent withDisabled(boolean disabled);
}