Enum RiskDetail

    • Enum Constant Detail

      • 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
      • ADMIN_CONFIRMED_USER_COMPROMISED

        public static final RiskDetail ADMIN_CONFIRMED_USER_COMPROMISED
      • UNKNOWN_FUTURE_VALUE

        public static final RiskDetail UNKNOWN_FUTURE_VALUE
    • 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 name
        NullPointerException - if the argument is null
      • enumName

        public String enumName()
        Specified by:
        enumName in interface com.github.davidmoten.odata.client.Enum
      • enumValue

        public String enumValue()
        Specified by:
        enumValue in interface com.github.davidmoten.odata.client.Enum