public static enum UserProfileAccessResponse.RequestStatus extends java.lang.Enum<UserProfileAccessResponse.RequestStatus>
PurchasingService.requestUserProfileAccess()
.Enum Constant and Description |
---|
FAILED
Indicates unsuccessful retrieval of auth code.
|
NOT_SUPPORTED
Indicates this call is not supported.
|
SUCCESSFUL
Indicates a successful request.
|
Modifier and Type | Method and Description |
---|---|
static UserProfileAccessResponse.RequestStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserProfileAccessResponse.RequestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserProfileAccessResponse.RequestStatus SUCCESSFUL
public static final UserProfileAccessResponse.RequestStatus FAILED
public static final UserProfileAccessResponse.RequestStatus NOT_SUPPORTED
public static UserProfileAccessResponse.RequestStatus[] values()
for (UserProfileAccessResponse.RequestStatus c : UserProfileAccessResponse.RequestStatus.values()) System.out.println(c);
public static UserProfileAccessResponse.RequestStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null