public static enum UserDataResponse.RequestStatus extends java.lang.Enum<UserDataResponse.RequestStatus>
PurchasingService.getUserData().| Enum Constant and Description |
|---|
FAILED
Indicates an unsuccessful request.
|
NOT_SUPPORTED
Indicates this call is not supported.
|
SUCCESSFUL
Indicates a successful request.
|
| Modifier and Type | Method and Description |
|---|---|
static UserDataResponse.RequestStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserDataResponse.RequestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserDataResponse.RequestStatus SUCCESSFUL
public static final UserDataResponse.RequestStatus FAILED
public static final UserDataResponse.RequestStatus NOT_SUPPORTED
public static UserDataResponse.RequestStatus[] values()
for (UserDataResponse.RequestStatus c : UserDataResponse.RequestStatus.values()) System.out.println(c);
public static UserDataResponse.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