Enum OAuthProvider
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum OAuthProvider extends Enum<OAuthProvider>
An enum class representing all of the supported OAuth providers
-
-
Field Summary
Fields Modifier and Type Field Description private final EnumEntries<OAuthProvider>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description AMAZONSupport Amazon OAuth logins
APPLESupport Apple OAuth logins
BITBUCKETSupport BitBucket OAuth logins
COINBASESupport Coinbase OAuth logins
DISCORDSupport Discord OAuth logins
FACEBOOKSupport Facebook OAuth logins
FIGMASupport Figma OAuth logins
GITHUBSupport GitHub OAuth logins
GITLABSupport GitLab OAuth logins
GOOGLESupport Google OAuth logins
LINKEDINSupport LinkedIn OAuth logins
MICROSOFTSupport Microsoft OAuth logins
SALESFORCESupport Salesforce OAuth logins
SLACKSupport Slack OAuth logins
SNAPCHATSupport Snapchat OAuth logins
TIKTOKSupport TikTok OAuth logins
TWITCHSupport Twitch OAuth logins
TWITTERSupport Twitter OAuth logins
-
Method Summary
Modifier and Type Method Description final OAuthProvidervalueOf(String value)Returns the enum constant of this type with the specified name. final Array<OAuthProvider>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<OAuthProvider>getEntries()An enum class representing all of the supported OAuth providers -
-
Method Detail
-
valueOf
final OAuthProvider valueOf(String value)
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.)
-
values
final Array<OAuthProvider> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<OAuthProvider> getEntries()
An enum class representing all of the supported OAuth providers
-
-
-
-