public static enum IdentityProviderEntity.Type extends java.lang.Enum<IdentityProviderEntity.Type>
| Enum Constant | Description |
|---|---|
BIND_ONLY_LDAP |
|
FEDERATED |
|
INTERNAL |
|
LDAP |
|
POLICY_BACKED |
| Modifier and Type | Method | Description |
|---|---|---|
static IdentityProviderEntity.Type |
fromType(java.lang.String type) |
|
java.lang.String |
getValue() |
|
static IdentityProviderEntity.Type |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static IdentityProviderEntity.Type[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentityProviderEntity.Type INTERNAL
public static final IdentityProviderEntity.Type LDAP
public static final IdentityProviderEntity.Type FEDERATED
public static final IdentityProviderEntity.Type BIND_ONLY_LDAP
public static final IdentityProviderEntity.Type POLICY_BACKED
public static IdentityProviderEntity.Type[] values()
for (IdentityProviderEntity.Type c : IdentityProviderEntity.Type.values()) System.out.println(c);
public static IdentityProviderEntity.Type 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 getValue()
public static IdentityProviderEntity.Type fromType(java.lang.String type)