@Deprecated public enum OAuthProviderParameter extends Enum<OAuthProviderParameter>
| Enum Constant and Description |
|---|
oauth_callback_confirmed
Deprecated.
Confirmation of the OAuth callback.
|
oauth_token
Deprecated.
The oauth token.
|
oauth_token_secret
Deprecated.
The oauth token secret.
|
oauth_verifier
Deprecated.
Verifier
|
| Modifier and Type | Method and Description |
|---|---|
static OAuthProviderParameter |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static OAuthProviderParameter[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuthProviderParameter oauth_token
public static final OAuthProviderParameter oauth_token_secret
public static final OAuthProviderParameter oauth_callback_confirmed
public static final OAuthProviderParameter oauth_verifier
public static OAuthProviderParameter[] values()
for (OAuthProviderParameter c : OAuthProviderParameter.values()) System.out.println(c);
public static OAuthProviderParameter 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 nullCopyright © 2020. All rights reserved.