public static enum OAuthToken.Type extends Enum<OAuthToken.Type>
| Enum Constant and Description |
|---|
Bearer
OAuth bearer token type.
|
OAuth
OAuth 1.0 token type.
|
| Modifier and Type | Method and Description |
|---|---|
static OAuthToken.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuthToken.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuthToken.Type OAuth
public static final OAuthToken.Type Bearer
public static OAuthToken.Type[] values()
for (OAuthToken.Type c : OAuthToken.Type.values()) System.out.println(c);
public static OAuthToken.Type 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 © 2011–2016 UnboundID. All rights reserved.