@Deprecated public enum OAuthConsumerParameter extends Enum<OAuthConsumerParameter>
| Enum Constant and Description |
|---|
oauth_callback
Deprecated.
Parameter for the callback.
|
oauth_consumer_key
Deprecated.
Parameter for the consumer key.
|
oauth_nonce
Deprecated.
Parameter for the nonce.
|
oauth_signature
Deprecated.
Parameter for the signature.
|
oauth_signature_method
Deprecated.
Parameter for the signature method.
|
oauth_timestamp
Deprecated.
Parameter for the timestamp.
|
oauth_token
Deprecated.
Parameter for the oauth token.
|
oauth_verifier
Deprecated.
Parameter for the verifier.
|
oauth_version
Deprecated.
Parameter for the version.
|
| Modifier and Type | Method and Description |
|---|---|
static OAuthConsumerParameter |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static OAuthConsumerParameter[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuthConsumerParameter oauth_consumer_key
public static final OAuthConsumerParameter oauth_token
public static final OAuthConsumerParameter oauth_signature_method
public static final OAuthConsumerParameter oauth_signature
public static final OAuthConsumerParameter oauth_timestamp
public static final OAuthConsumerParameter oauth_nonce
public static final OAuthConsumerParameter oauth_version
public static final OAuthConsumerParameter oauth_callback
public static final OAuthConsumerParameter oauth_verifier
public static OAuthConsumerParameter[] values()
for (OAuthConsumerParameter c : OAuthConsumerParameter.values()) System.out.println(c);
public static OAuthConsumerParameter 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.