public enum OAuthProtocol extends Enum<OAuthProtocol>
| Enum Constant and Description |
|---|
threelegged |
twolegged |
| Modifier and Type | Method and Description |
|---|---|
static OAuthProtocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuthProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuthProtocol twolegged
public static final OAuthProtocol threelegged
public static OAuthProtocol[] values()
for (OAuthProtocol c : OAuthProtocol.values()) System.out.println(c);
public static OAuthProtocol 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 © 2009–2013 SURFnet bv, The Netherlands. All rights reserved.