Package com.sforce.soap.metadata
Enum AuthProviderType
- java.lang.Object
-
- java.lang.Enum<AuthProviderType>
-
- com.sforce.soap.metadata.AuthProviderType
-
- All Implemented Interfaces:
Serializable,Comparable<AuthProviderType>
public enum AuthProviderType extends Enum<AuthProviderType>
This is a generated class for the SObject Enterprise API. Do not edit this file, as your changes will be lost.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AppleEnumeration : AppleCustomEnumeration : CustomEvergreenEnumeration : EvergreenFacebookEnumeration : FacebookGitHubEnumeration : GitHubGoogleEnumeration : GoogleHubSpotEnumeration : HubSpotJanrainEnumeration : JanrainLinkedInEnumeration : LinkedInMicrosoftEnumeration : MicrosoftMicrosoftACSEnumeration : MicrosoftACSMuleSoftEnumeration : MuleSoftOpenIdConnectEnumeration : OpenIdConnectSalesforceEnumeration : SalesforceSlackEnumeration : SlackTwitterEnumeration : Twitter
-
Field Summary
Fields Modifier and Type Field Description static Map<String,String>valuesToEnums
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static AuthProviderTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AuthProviderType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Facebook
public static final AuthProviderType Facebook
Enumeration : Facebook
-
Janrain
public static final AuthProviderType Janrain
Enumeration : Janrain
-
Salesforce
public static final AuthProviderType Salesforce
Enumeration : Salesforce
-
OpenIdConnect
public static final AuthProviderType OpenIdConnect
Enumeration : OpenIdConnect
-
MicrosoftACS
public static final AuthProviderType MicrosoftACS
Enumeration : MicrosoftACS
-
LinkedIn
public static final AuthProviderType LinkedIn
Enumeration : LinkedIn
-
Twitter
public static final AuthProviderType Twitter
Enumeration : Twitter
-
Google
public static final AuthProviderType Google
Enumeration : Google
-
GitHub
public static final AuthProviderType GitHub
Enumeration : GitHub
-
Custom
public static final AuthProviderType Custom
Enumeration : Custom
-
Apple
public static final AuthProviderType Apple
Enumeration : Apple
-
Evergreen
public static final AuthProviderType Evergreen
Enumeration : Evergreen
-
Slack
public static final AuthProviderType Slack
Enumeration : Slack
-
HubSpot
public static final AuthProviderType HubSpot
Enumeration : HubSpot
-
Microsoft
public static final AuthProviderType Microsoft
Enumeration : Microsoft
-
MuleSoft
public static final AuthProviderType MuleSoft
Enumeration : MuleSoft
-
-
Method Detail
-
values
public static AuthProviderType[] 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 (AuthProviderType c : AuthProviderType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthProviderType 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<AuthProviderType>
-
-