public enum OAuthScope extends Enum<OAuthScope>
LinkedInOAuthRequestFilter
Enum Constant and Description |
---|
R_BASICPROFILE |
R_CONTACTINFO |
R_EMAILADDRESS |
R_FULLPROFILE |
R_NETWORK |
RW_COMPANY_ADMIN |
RW_GROUPS |
RW_NUS
Deprecated.
|
W_MESSAGES |
W_SHARE |
Modifier and Type | Method and Description |
---|---|
static OAuthScope |
fromValue(String value) |
static OAuthScope[] |
fromValues(String... values) |
String |
getValue() |
static OAuthScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuthScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuthScope R_BASICPROFILE
public static final OAuthScope R_FULLPROFILE
public static final OAuthScope R_EMAILADDRESS
public static final OAuthScope R_NETWORK
public static final OAuthScope R_CONTACTINFO
@Deprecated public static final OAuthScope RW_NUS
public static final OAuthScope RW_COMPANY_ADMIN
public static final OAuthScope RW_GROUPS
public static final OAuthScope W_MESSAGES
public static final OAuthScope W_SHARE
public static OAuthScope[] values()
for (OAuthScope c : OAuthScope.values()) System.out.println(c);
public static OAuthScope 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 nullpublic String getValue()
public static OAuthScope fromValue(String value)
public static OAuthScope[] fromValues(String... values)
Apache Camel