Enum InteractionResponseType

    • Enum Constant Detail

      • 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
    • Method Detail

      • values

        public static InteractionResponseType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (InteractionResponseType c : InteractionResponseType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static InteractionResponseType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type 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.