Package net.dv8tion.jda.api.entities
Enum Guild.NotificationLevel
- java.lang.Object
- 
- java.lang.Enum<Guild.NotificationLevel>
- 
- net.dv8tion.jda.api.entities.Guild.NotificationLevel
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<Guild.NotificationLevel>
 - Enclosing interface:
- Guild
 
 public static enum Guild.NotificationLevel extends java.lang.Enum<Guild.NotificationLevel> Represents the Notification-level of the Guild. The Verification-Level determines what messages you receive pings for.
 All_Messages -> Every message sent in this guild will result in a message ping.
 Mentions_Only -> Only messages that specifically mention will result in a ping.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ALL_MESSAGESMENTIONS_ONLYUNKNOWN
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Guild.NotificationLevelfromKey(int key)Used to retrieve aNotificationLevelbased on the Discord id key.intgetKey()The Discord id key used to represent this NotificationLevel.static Guild.NotificationLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Guild.NotificationLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ALL_MESSAGESpublic static final Guild.NotificationLevel ALL_MESSAGES 
 - 
MENTIONS_ONLYpublic static final Guild.NotificationLevel MENTIONS_ONLY 
 - 
UNKNOWNpublic static final Guild.NotificationLevel UNKNOWN 
 
- 
 - 
Method Detail- 
valuespublic static Guild.NotificationLevel[] 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 (Guild.NotificationLevel c : Guild.NotificationLevel.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Guild.NotificationLevel 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 name
- java.lang.NullPointerException- if the argument is null
 
 - 
getKeypublic int getKey() The Discord id key used to represent this NotificationLevel.- Returns:
- Integer id for this NotificationLevel.
 
 - 
fromKey@Nonnull public static Guild.NotificationLevel fromKey(int key) Used to retrieve aNotificationLevelbased on the Discord id key.- Parameters:
- key- The Discord id key representing the requested NotificationLevel.
- Returns:
- The NotificationLevel related to the provided key, or NotificationLevel.UNKNOWNif the key is not recognized.
 
 
- 
 
-