public static enum IdentityProvider.IdentityProviderType extends java.lang.Enum<IdentityProvider.IdentityProviderType>
| Enum Constant | Description |
|---|---|
BIND_ONLY_LDAP |
|
FEDERATED |
|
INTERNAL |
|
LDAP |
|
POLICY_BACKED |
| Modifier and Type | Method | Description |
|---|---|---|
static IdentityProvider.IdentityProviderType |
fromType(java.lang.String type) |
|
java.lang.String |
getType() |
|
static IdentityProvider.IdentityProviderType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static IdentityProvider.IdentityProviderType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentityProvider.IdentityProviderType INTERNAL
public static final IdentityProvider.IdentityProviderType LDAP
public static final IdentityProvider.IdentityProviderType FEDERATED
public static final IdentityProvider.IdentityProviderType BIND_ONLY_LDAP
public static final IdentityProvider.IdentityProviderType POLICY_BACKED
public static IdentityProvider.IdentityProviderType[] values()
for (IdentityProvider.IdentityProviderType c : IdentityProvider.IdentityProviderType.values()) System.out.println(c);
public static IdentityProvider.IdentityProviderType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getType()
public static IdentityProvider.IdentityProviderType fromType(java.lang.String type)