Enum Message.Type

    • Enum Constant Detail

      • DEFAULT

        public static final Message.Type DEFAULT
        A message created by a user.
      • RECIPIENT_ADD

        public static final Message.Type RECIPIENT_ADD
        A message created when a recipient was added to a DM.
      • RECIPIENT_REMOVE

        public static final Message.Type RECIPIENT_REMOVE
        A message created when a recipient left a DM.
      • CALL

        public static final Message.Type CALL
        A message created when a call was started.
      • CHANNEL_NAME_CHANGE

        public static final Message.Type CHANNEL_NAME_CHANGE
        A message created when a channel's name changed.
      • CHANNEL_ICON_CHANGE

        public static final Message.Type CHANNEL_ICON_CHANGE
        A message created when a channel's icon changed.
      • CHANNEL_PINNED_MESSAGE

        public static final Message.Type CHANNEL_PINNED_MESSAGE
        A message created when a message was pinned.
      • GUILD_MEMBER_JOIN

        public static final Message.Type GUILD_MEMBER_JOIN
        A message created when an user joins a guild.
    • Method Detail

      • values

        public static Message.Type[] 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 (Message.Type c : Message.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Message.Type 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 Message.Type of​(int value)
        Gets the type of message. 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 message.