Package org.javacord.api.entity.server
Enum MultiFactorAuthenticationLevel
- java.lang.Object
-
- java.lang.Enum<MultiFactorAuthenticationLevel>
-
- org.javacord.api.entity.server.MultiFactorAuthenticationLevel
-
- All Implemented Interfaces:
Serializable,Comparable<MultiFactorAuthenticationLevel>
public enum MultiFactorAuthenticationLevel extends Enum<MultiFactorAuthenticationLevel>
This enum contains all multi factor authentication levels.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MultiFactorAuthenticationLevelfromId(int id)Gets the multi factor authentication level by its id.intgetId()Gets the id of the multi factor authentication level.static MultiFactorAuthenticationLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static MultiFactorAuthenticationLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final MultiFactorAuthenticationLevel NONE
-
ELEVATED
public static final MultiFactorAuthenticationLevel ELEVATED
-
UNKNOWN
public static final MultiFactorAuthenticationLevel UNKNOWN
-
-
Method Detail
-
values
public static MultiFactorAuthenticationLevel[] 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 (MultiFactorAuthenticationLevel c : MultiFactorAuthenticationLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MultiFactorAuthenticationLevel 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
-
getId
public int getId()
Gets the id of the multi factor authentication level.- Returns:
- The id of the multi factor authentication level.
-
fromId
public static MultiFactorAuthenticationLevel fromId(int id)
Gets the multi factor authentication level by its id.- Parameters:
id- The id of the multi factor authentication level.- Returns:
- The multi factor authentication level with the given id.
-
-