Package odata.msgraph.client.enums
Enum AuthenticationMethodModes
- java.lang.Object
-
- java.lang.Enum<AuthenticationMethodModes>
-
- odata.msgraph.client.enums.AuthenticationMethodModes
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<AuthenticationMethodModes>
public enum AuthenticationMethodModes extends Enum<AuthenticationMethodModes> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static AuthenticationMethodModesvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationMethodModes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PASSWORD
public static final AuthenticationMethodModes PASSWORD
-
VOICE
public static final AuthenticationMethodModes VOICE
-
HARDWARE_OATH
public static final AuthenticationMethodModes HARDWARE_OATH
-
SOFTWARE_OATH
public static final AuthenticationMethodModes SOFTWARE_OATH
-
SMS
public static final AuthenticationMethodModes SMS
-
FIDO2
public static final AuthenticationMethodModes FIDO2
-
WINDOWS_HELLO_FOR_BUSINESS
public static final AuthenticationMethodModes WINDOWS_HELLO_FOR_BUSINESS
-
MICROSOFT_AUTHENTICATOR_PUSH
public static final AuthenticationMethodModes MICROSOFT_AUTHENTICATOR_PUSH
-
DEVICE_BASED_PUSH
public static final AuthenticationMethodModes DEVICE_BASED_PUSH
-
TEMPORARY_ACCESS_PASS_ONE_TIME
public static final AuthenticationMethodModes TEMPORARY_ACCESS_PASS_ONE_TIME
-
TEMPORARY_ACCESS_PASS_MULTI_USE
public static final AuthenticationMethodModes TEMPORARY_ACCESS_PASS_MULTI_USE
-
EMAIL
public static final AuthenticationMethodModes EMAIL
-
X509CERTIFICATE_SINGLE_FACTOR
public static final AuthenticationMethodModes X509CERTIFICATE_SINGLE_FACTOR
-
X509CERTIFICATE_MULTI_FACTOR
public static final AuthenticationMethodModes X509CERTIFICATE_MULTI_FACTOR
-
FEDERATED_SINGLE_FACTOR
public static final AuthenticationMethodModes FEDERATED_SINGLE_FACTOR
-
FEDERATED_MULTI_FACTOR
public static final AuthenticationMethodModes FEDERATED_MULTI_FACTOR
-
UNKNOWN_FUTURE_VALUE
public static final AuthenticationMethodModes UNKNOWN_FUTURE_VALUE
-
-
Method Detail
-
values
public static AuthenticationMethodModes[] 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 (AuthenticationMethodModes c : AuthenticationMethodModes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticationMethodModes 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
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-