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 CALLCHANNEL_ICON_CHANGECHANNEL_NAME_CHANGECHANNEL_PINNED_MESSAGENORMALA normal message being sent by a user.NORMAL_WEBHOOKA normal message being sent by a webhook.RECIPIENT_ADDRECIPIENT_REMOVESERVER_MEMBER_JOINUNKNOWNAn unknown message type.
-
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
-
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.
-
-