public enum OAuth1Version extends Enum<OAuth1Version>
OAuth1Template to vary behavior its by the configured version.| Enum Constant and Description |
|---|
CORE_10
OAuth Core Version 1.0.
|
CORE_10_REVISION_A
OAuth Core Version 1.0 Revision A.
|
| Modifier and Type | Method and Description |
|---|---|
static OAuth1Version |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuth1Version[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuth1Version CORE_10
public static final OAuth1Version CORE_10_REVISION_A
public static OAuth1Version[] values()
for (OAuth1Version c : OAuth1Version.values()) System.out.println(c);
public static OAuth1Version 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 null