public static enum OAuthUtil.SignatureType extends Enum<OAuthUtil.SignatureType>
| Enum Constant and Description |
|---|
URL_AND_BODY_HASH |
URL_AND_FORM_PARAMS |
URL_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static OAuthUtil.SignatureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuthUtil.SignatureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuthUtil.SignatureType URL_ONLY
public static final OAuthUtil.SignatureType URL_AND_FORM_PARAMS
public static final OAuthUtil.SignatureType URL_AND_BODY_HASH
public static OAuthUtil.SignatureType[] values()
for (OAuthUtil.SignatureType c : OAuthUtil.SignatureType.values()) System.out.println(c);
public static OAuthUtil.SignatureType 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 © 2007-2012. All Rights Reserved.