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