Package org.javacord.api.entity.server
Enum DefaultMessageNotificationLevel
- java.lang.Object
-
- java.lang.Enum<DefaultMessageNotificationLevel>
-
- org.javacord.api.entity.server.DefaultMessageNotificationLevel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DefaultMessageNotificationLevel>
public enum DefaultMessageNotificationLevel extends java.lang.Enum<DefaultMessageNotificationLevel>
This enum contains all default message notification levels.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_MESSAGESONLY_MENTIONSUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DefaultMessageNotificationLevelfromId(int id)Gets the default message notification level by its id.intgetId()Gets the id of the default message notification level.static DefaultMessageNotificationLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DefaultMessageNotificationLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_MESSAGES
public static final DefaultMessageNotificationLevel ALL_MESSAGES
-
ONLY_MENTIONS
public static final DefaultMessageNotificationLevel ONLY_MENTIONS
-
UNKNOWN
public static final DefaultMessageNotificationLevel UNKNOWN
-
-
Method Detail
-
values
public static DefaultMessageNotificationLevel[] 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 (DefaultMessageNotificationLevel c : DefaultMessageNotificationLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultMessageNotificationLevel valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getId
public int getId()
Gets the id of the default message notification level.- Returns:
- The id of the default message notification level.
-
fromId
public static DefaultMessageNotificationLevel fromId(int id)
Gets the default message notification level by its id.- Parameters:
id- The id of the default message notification level.- Returns:
- The default message notification level with the given id.
-
-