Package net.dv8tion.jda.api.entities
Enum Guild.MFALevel
- All Implemented Interfaces:
Serializable
,Comparable<Guild.MFALevel>
- Enclosing interface:
- Guild
Represents the Multifactor Authentication level required by the Guild.
The MFA Level restricts administrator functions to account with MFA Level equal to or higher than that set by the guild.
The MFA Level restricts administrator functions to account with MFA Level equal to or higher than that set by the guild.
None -> There is no MFA level restriction on administrator functions in this guild.
Two_Factor_Auth -> Users must have 2FA enabled on their account to perform administrator functions.
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Guild.MFALevel
fromKey
(int key) Used to retrieve aMFALevel
based on the Discord id key.int
getKey()
The Discord id key used to represent this MFALevel.static Guild.MFALevel
Returns the enum constant of this type with the specified name.static Guild.MFALevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
-
TWO_FACTOR_AUTH
-
UNKNOWN
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getKey
public int getKey()The Discord id key used to represent this MFALevel.- Returns:
- Integer id for this MFALevel.
-
fromKey
Used to retrieve aMFALevel
based on the Discord id key.- Parameters:
key
- The Discord id key representing the requested MFALevel.- Returns:
- The MFALevel related to the provided key, or
MFALevel.UNKNOWN
if the key is not recognized.
-