public enum MobileServiceAuthenticationProvider extends Enum<MobileServiceAuthenticationProvider>
Enum Constant and Description |
---|
Facebook |
Google |
MicrosoftAccount |
Twitter |
WindowsAzureActiveDirectory |
Modifier and Type | Method and Description |
---|---|
static MobileServiceAuthenticationProvider |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MobileServiceAuthenticationProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MobileServiceAuthenticationProvider MicrosoftAccount
public static final MobileServiceAuthenticationProvider Google
public static final MobileServiceAuthenticationProvider Twitter
public static final MobileServiceAuthenticationProvider Facebook
public static final MobileServiceAuthenticationProvider WindowsAzureActiveDirectory
public static MobileServiceAuthenticationProvider[] values()
for (MobileServiceAuthenticationProvider c : MobileServiceAuthenticationProvider.values()) System.out.println(c);
public static MobileServiceAuthenticationProvider 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 null