public enum ShippingDeliveryStatusType extends java.lang.Enum<ShippingDeliveryStatusType>
| Enum Constant and Description |
|---|
BACK_ORDERED |
CANCELLED |
DELIVERED |
IN_TRANSIT |
NOT_SHIPPED |
OTHER |
PARTIAL_SHIPPED |
PICKED_UP_BY_CUSTOMER |
SHIPPED |
SHIPPING_EXCEPTION |
| Modifier and Type | Method and Description |
|---|---|
static ShippingDeliveryStatusType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShippingDeliveryStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="not_shipped") public static final ShippingDeliveryStatusType NOT_SHIPPED
@SerializedName(value="back_ordered") public static final ShippingDeliveryStatusType BACK_ORDERED
@SerializedName(value="in_transit") public static final ShippingDeliveryStatusType IN_TRANSIT
@SerializedName(value="partial_shipped") public static final ShippingDeliveryStatusType PARTIAL_SHIPPED
@SerializedName(value="shipped") public static final ShippingDeliveryStatusType SHIPPED
@SerializedName(value="cancelled") public static final ShippingDeliveryStatusType CANCELLED
@SerializedName(value="shipping_exception") public static final ShippingDeliveryStatusType SHIPPING_EXCEPTION
@SerializedName(value="picked_up_by_customer") public static final ShippingDeliveryStatusType PICKED_UP_BY_CUSTOMER
@SerializedName(value="delivered") public static final ShippingDeliveryStatusType DELIVERED
@SerializedName(value="other") public static final ShippingDeliveryStatusType OTHER
public static ShippingDeliveryStatusType[] values()
for (ShippingDeliveryStatusType c : ShippingDeliveryStatusType.values()) System.out.println(c);
public static ShippingDeliveryStatusType 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