public enum OAuthConsumerParameter extends Enum<OAuthConsumerParameter>
| Enum Constant and Description |
|---|
oauth_callback
Parameter for the callback.
|
oauth_consumer_key
Parameter for the consumer key.
|
oauth_nonce
Parameter for the nonce.
|
oauth_signature
Parameter for the signature.
|
oauth_signature_method
Parameter for the signature method.
|
oauth_timestamp
Parameter for the timestamp.
|
oauth_token
Parameter for the oauth token.
|
oauth_verifier
Parameter for the verifier.
|
oauth_version
Parameter for the version.
|
| Modifier and Type | Method and Description |
|---|---|
static OAuthConsumerParameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuthConsumerParameter[] |
values()
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 © 2015. All rights reserved.