Package org.javacord.api.entity.message
Enum MessageType
- java.lang.Object
-
- java.lang.Enum<MessageType>
-
- org.javacord.api.entity.message.MessageType
-
- All Implemented Interfaces:
Serializable,Comparable<MessageType>
public enum MessageType extends Enum<MessageType>
The enum contains all different types of messages.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATION_COMMANDCALLCHANNEL_FOLLOW_ADDCHANNEL_ICON_CHANGECHANNEL_NAME_CHANGECHANNEL_PINNED_MESSAGENORMALA normal message being sent by a user.NORMAL_WEBHOOKA normal message being sent by a webhook.RECIPIENT_ADDRECIPIENT_REMOVEREPLYSERVER_DISCOVERY_DISQUALIFIEDSERVER_DISCOVERY_GRACE_PERIOD_FINAL_WARNINGSERVER_DISCOVERY_GRACE_PERIOD_INITIAL_WARNINGSERVER_DISCOVERY_REQUALIFIEDSERVER_MEMBER_JOINUNKNOWNAn unknown message type.USER_PREMIUM_SERVER_SUBSCRIPTIONUSER_PREMIUM_SERVER_SUBSCRIPTION_TIER_1USER_PREMIUM_SERVER_SUBSCRIPTION_TIER_2USER_PREMIUM_SERVER_SUBSCRIPTION_TIER_3
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MessageTypebyType(int type, boolean webhook)Gets the type by its int representation.static MessageTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MessageType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL
public static final MessageType NORMAL
A normal message being sent by a user.
-
NORMAL_WEBHOOK
public static final MessageType NORMAL_WEBHOOK
A normal message being sent by a webhook.
-
RECIPIENT_ADD
public static final MessageType RECIPIENT_ADD
-
RECIPIENT_REMOVE
public static final MessageType RECIPIENT_REMOVE
-
CALL
public static final MessageType CALL
-
CHANNEL_NAME_CHANGE
public static final MessageType CHANNEL_NAME_CHANGE
-
CHANNEL_ICON_CHANGE
public static final MessageType CHANNEL_ICON_CHANGE
-
CHANNEL_PINNED_MESSAGE
public static final MessageType CHANNEL_PINNED_MESSAGE
-
SERVER_MEMBER_JOIN
public static final MessageType SERVER_MEMBER_JOIN
-
USER_PREMIUM_SERVER_SUBSCRIPTION
public static final MessageType USER_PREMIUM_SERVER_SUBSCRIPTION
-
USER_PREMIUM_SERVER_SUBSCRIPTION_TIER_1
public static final MessageType USER_PREMIUM_SERVER_SUBSCRIPTION_TIER_1
-
USER_PREMIUM_SERVER_SUBSCRIPTION_TIER_2
public static final MessageType USER_PREMIUM_SERVER_SUBSCRIPTION_TIER_2
-
USER_PREMIUM_SERVER_SUBSCRIPTION_TIER_3
public static final MessageType USER_PREMIUM_SERVER_SUBSCRIPTION_TIER_3
-
CHANNEL_FOLLOW_ADD
public static final MessageType CHANNEL_FOLLOW_ADD
-
SERVER_DISCOVERY_DISQUALIFIED
public static final MessageType SERVER_DISCOVERY_DISQUALIFIED
-
SERVER_DISCOVERY_REQUALIFIED
public static final MessageType SERVER_DISCOVERY_REQUALIFIED
-
SERVER_DISCOVERY_GRACE_PERIOD_INITIAL_WARNING
public static final MessageType SERVER_DISCOVERY_GRACE_PERIOD_INITIAL_WARNING
-
SERVER_DISCOVERY_GRACE_PERIOD_FINAL_WARNING
public static final MessageType SERVER_DISCOVERY_GRACE_PERIOD_FINAL_WARNING
-
REPLY
public static final MessageType REPLY
-
APPLICATION_COMMAND
public static final MessageType APPLICATION_COMMAND
-
UNKNOWN
public static final MessageType UNKNOWN
An unknown message type.
-
-
Method Detail
-
values
public static MessageType[] 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 (MessageType c : MessageType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageType 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 nameNullPointerException- if the argument is null
-
byType
public static MessageType byType(int type, boolean webhook)
Gets the type by its int representation.- Parameters:
type- The int representation.webhook- Whether the message was sent by a webhook or not.- Returns:
- The message type.
-
-