public static enum OAuthSignature.HTTPMethod extends Enum<OAuthSignature.HTTPMethod>
| Modifier and Type | Method and Description |
|---|---|
static OAuthSignature.HTTPMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuthSignature.HTTPMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuthSignature.HTTPMethod GET
public static final OAuthSignature.HTTPMethod HEAD
public static final OAuthSignature.HTTPMethod POST
public static final OAuthSignature.HTTPMethod PUT
public static final OAuthSignature.HTTPMethod UPDATE
public static OAuthSignature.HTTPMethod[] values()
for (OAuthSignature.HTTPMethod c : OAuthSignature.HTTPMethod.values()) System.out.println(c);
public static OAuthSignature.HTTPMethod 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 © 2016. All Rights Reserved.