Enum BuiltInAuthenticationProvider
- java.lang.Object
-
- java.lang.Enum<BuiltInAuthenticationProvider>
-
- com.azure.resourcemanager.appservice.models.BuiltInAuthenticationProvider
-
- All Implemented Interfaces:
Serializable,Comparable<BuiltInAuthenticationProvider>
public enum BuiltInAuthenticationProvider extends Enum<BuiltInAuthenticationProvider>
Defines values for BuiltInAuthenticationProvider.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AZURE_ACTIVE_DIRECTORYEnum value AzureActiveDirectory.FACEBOOKEnum value Facebook.GITHUBEnum value Github.GOOGLEEnum value Google.MICROSOFT_ACCOUNTEnum value MicrosoftAccount.TWITTEREnum value Twitter.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BuiltInAuthenticationProviderfromString(String value)Parses a serialized value to a BuiltInAuthenticationProvider instance.StringtoString()static BuiltInAuthenticationProvidervalueOf(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.
-
-
-
Enum Constant Detail
-
AZURE_ACTIVE_DIRECTORY
public static final BuiltInAuthenticationProvider AZURE_ACTIVE_DIRECTORY
Enum value AzureActiveDirectory.
-
FACEBOOK
public static final BuiltInAuthenticationProvider FACEBOOK
Enum value Facebook.
-
GOOGLE
public static final BuiltInAuthenticationProvider GOOGLE
Enum value Google.
-
MICROSOFT_ACCOUNT
public static final BuiltInAuthenticationProvider MICROSOFT_ACCOUNT
Enum value MicrosoftAccount.
-
TWITTER
public static final BuiltInAuthenticationProvider TWITTER
Enum value Twitter.
-
GITHUB
public static final BuiltInAuthenticationProvider GITHUB
Enum value Github.
-
-
Method Detail
-
values
public static BuiltInAuthenticationProvider[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BuiltInAuthenticationProvider c : BuiltInAuthenticationProvider.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuiltInAuthenticationProvider valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromString
public static BuiltInAuthenticationProvider fromString(String value)
Parses a serialized value to a BuiltInAuthenticationProvider instance.- Parameters:
value- the serialized value to parse.- Returns:
- the parsed BuiltInAuthenticationProvider object, or null if unable to parse.
-
toString
public String toString()
- Overrides:
toStringin classEnum<BuiltInAuthenticationProvider>
-
-