public enum ProviderType extends Enum<ProviderType>
<xs:enumeration value="saml20"/> <xs:enumeration value="aselect"/> <xs:enumeration value="wsfed1x"/> <xs:enumeration value="proxy"/> <xs:enumeration value="radius"/> <xs:enumeration value="shib13"/>
| Enum Constant and Description |
|---|
aselect |
proxy |
radius |
saml20 |
shib13 |
wsfed1x |
| Modifier and Type | Method and Description |
|---|---|
static ProviderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProviderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProviderType saml20
public static final ProviderType aselect
public static final ProviderType wsfed1x
public static final ProviderType proxy
public static final ProviderType radius
public static final ProviderType shib13
public static ProviderType[] values()
for (ProviderType c : ProviderType.values()) System.out.println(c);
public static ProviderType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2016 Pivotal Software, Inc.. All rights reserved.