Enum Class InteractionResponseType

java.lang.Object
java.lang.Enum<InteractionResponseType>
discord4j.rest.util.InteractionResponseType
All Implemented Interfaces:
Serializable, Comparable<InteractionResponseType>, Constable

public enum InteractionResponseType extends Enum<InteractionResponseType>
  • Enum Constant Details

    • UNKNOWN

      public static final InteractionResponseType UNKNOWN
      Unknown type
    • PONG

      public static final InteractionResponseType PONG
      ACK a Ping
    • CHANNEL_MESSAGE_WITH_SOURCE

      public static final InteractionResponseType CHANNEL_MESSAGE_WITH_SOURCE
      Respond to an interaction with a message
    • DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE

      public static final InteractionResponseType DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE
      ACK an interaction and send a response later, the user sees a loading state
    • DEFERRED_UPDATE_MESSAGE

      public static final InteractionResponseType DEFERRED_UPDATE_MESSAGE
      For components, ACK an interaction and edit the original message later; the user does not see a loading state
    • UPDATE_MESSAGE

      public static final InteractionResponseType UPDATE_MESSAGE
      For components, edit the message the component was attached to
    • APPLICATION_COMMAND_AUTOCOMPLETE_RESULT

      public static final InteractionResponseType APPLICATION_COMMAND_AUTOCOMPLETE_RESULT
      Respond to an autocomplete interaction with suggested choices
    • PREMIUM_REQUIRED

      @Deprecated public static final InteractionResponseType PREMIUM_REQUIRED
      Deprecated.
      in favor of using discord4j.core.object.component.Button#premium(Snowflake). This will continue to function but may eventually be unsupported
      Response to a supported interaction with a notification that this interaction is only available to premium guilds or users.
  • Method Details

    • values

      public static InteractionResponseType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static InteractionResponseType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()
      Gets the underlying value as represented by Discord.
      Returns:
      The underlying value as represented by Discord.
    • of

      public static InteractionResponseType of(int value)
      Gets the type of an interaction response. It is guaranteed that invoking getValue() from the returned enum will equal (==) the supplied value.
      Parameters:
      value - The underlying value as represented by Discord.
      Returns:
      The type of response.