Package odata.msgraph.client.beta.enums
Enum RiskDetail
- java.lang.Object
-
- java.lang.Enum<RiskDetail>
-
- odata.msgraph.client.beta.enums.RiskDetail
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<RiskDetail>
public enum RiskDetail extends Enum<RiskDetail> 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 RiskDetailvalueOf(String name)Returns the enum constant of this type with the specified name.static RiskDetail[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final RiskDetail NONE
-
ADMIN_GENERATED_TEMPORARY_PASSWORD
public static final RiskDetail ADMIN_GENERATED_TEMPORARY_PASSWORD
-
USER_PERFORMED_SECURED_PASSWORD_CHANGE
public static final RiskDetail USER_PERFORMED_SECURED_PASSWORD_CHANGE
-
USER_PERFORMED_SECURED_PASSWORD_RESET
public static final RiskDetail USER_PERFORMED_SECURED_PASSWORD_RESET
-
ADMIN_CONFIRMED_SIGNIN_SAFE
public static final RiskDetail ADMIN_CONFIRMED_SIGNIN_SAFE
-
AI_CONFIRMED_SIGNIN_SAFE
public static final RiskDetail AI_CONFIRMED_SIGNIN_SAFE
-
USER_PASSED_MFADRIVEN_BY_RISK_BASED_POLICY
public static final RiskDetail USER_PASSED_MFADRIVEN_BY_RISK_BASED_POLICY
-
ADMIN_DISMISSED_ALL_RISK_FOR_USER
public static final RiskDetail ADMIN_DISMISSED_ALL_RISK_FOR_USER
-
ADMIN_CONFIRMED_SIGNIN_COMPROMISED
public static final RiskDetail ADMIN_CONFIRMED_SIGNIN_COMPROMISED
-
HIDDEN
public static final RiskDetail HIDDEN
-
ADMIN_CONFIRMED_USER_COMPROMISED
public static final RiskDetail ADMIN_CONFIRMED_USER_COMPROMISED
-
UNKNOWN_FUTURE_VALUE
public static final RiskDetail UNKNOWN_FUTURE_VALUE
-
ADMIN_CONFIRMED_SERVICE_PRINCIPAL_COMPROMISED
public static final RiskDetail ADMIN_CONFIRMED_SERVICE_PRINCIPAL_COMPROMISED
-
ADMIN_DISMISSED_ALL_RISK_FOR_SERVICE_PRINCIPAL
public static final RiskDetail ADMIN_DISMISSED_ALL_RISK_FOR_SERVICE_PRINCIPAL
-
-
Method Detail
-
values
public static RiskDetail[] 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 (RiskDetail c : RiskDetail.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RiskDetail 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
-
-