public enum BuiltInAuthenticationProvider extends Enum<BuiltInAuthenticationProvider>
| Enum Constant and Description |
|---|
AZURE_ACTIVE_DIRECTORY
Enum value AzureActiveDirectory.
|
FACEBOOK
Enum value Facebook.
|
GOOGLE
Enum value Google.
|
MICROSOFT_ACCOUNT
Enum value MicrosoftAccount.
|
TWITTER
Enum value Twitter.
|
| Modifier and Type | Method and Description |
|---|---|
static BuiltInAuthenticationProvider |
fromString(String value)
Parses a serialized value to a BuiltInAuthenticationProvider instance.
|
String |
toString() |
static BuiltInAuthenticationProvider |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuiltInAuthenticationProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuiltInAuthenticationProvider AZURE_ACTIVE_DIRECTORY
public static final BuiltInAuthenticationProvider FACEBOOK
public static final BuiltInAuthenticationProvider GOOGLE
public static final BuiltInAuthenticationProvider MICROSOFT_ACCOUNT
public static final BuiltInAuthenticationProvider TWITTER
public static BuiltInAuthenticationProvider[] values()
for (BuiltInAuthenticationProvider c : BuiltInAuthenticationProvider.values()) System.out.println(c);
public static BuiltInAuthenticationProvider 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 nullpublic static BuiltInAuthenticationProvider fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<BuiltInAuthenticationProvider>Copyright © 2019. All rights reserved.