Package com.okta.sdk.resource.policy
Enum IdentityProviderPolicyRuleCondition.ProviderEnum
- java.lang.Object
-
- java.lang.Enum<IdentityProviderPolicyRuleCondition.ProviderEnum>
-
- com.okta.sdk.resource.policy.IdentityProviderPolicyRuleCondition.ProviderEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IdentityProviderPolicyRuleCondition.ProviderEnum>
- Enclosing interface:
- IdentityProviderPolicyRuleCondition
public static enum IdentityProviderPolicyRuleCondition.ProviderEnum extends java.lang.Enum<IdentityProviderPolicyRuleCondition.ProviderEnum>
Enum provider
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANYOKTASPECIFIC_IDP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static IdentityProviderPolicyRuleCondition.ProviderEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IdentityProviderPolicyRuleCondition.ProviderEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY
public static final IdentityProviderPolicyRuleCondition.ProviderEnum ANY
-
OKTA
public static final IdentityProviderPolicyRuleCondition.ProviderEnum OKTA
-
SPECIFIC_IDP
public static final IdentityProviderPolicyRuleCondition.ProviderEnum SPECIFIC_IDP
-
-
Method Detail
-
values
public static IdentityProviderPolicyRuleCondition.ProviderEnum[] 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 (IdentityProviderPolicyRuleCondition.ProviderEnum c : IdentityProviderPolicyRuleCondition.ProviderEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentityProviderPolicyRuleCondition.ProviderEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<IdentityProviderPolicyRuleCondition.ProviderEnum>
-
-