Package com.checkout.disputes
Enum ShippingDeliveryStatusType
- java.lang.Object
-
- java.lang.Enum<ShippingDeliveryStatusType>
-
- com.checkout.disputes.ShippingDeliveryStatusType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ShippingDeliveryStatusType>
public enum ShippingDeliveryStatusType extends java.lang.Enum<ShippingDeliveryStatusType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACK_ORDEREDCANCELLEDDELIVEREDIN_TRANSITNOT_SHIPPEDOTHERPARTIAL_SHIPPEDPICKED_UP_BY_CUSTOMERSHIPPEDSHIPPING_EXCEPTION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ShippingDeliveryStatusTypevalueOf(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.
-
-
-
Enum Constant Detail
-
NOT_SHIPPED
@SerializedName("not_shipped") public static final ShippingDeliveryStatusType NOT_SHIPPED
-
BACK_ORDERED
@SerializedName("back_ordered") public static final ShippingDeliveryStatusType BACK_ORDERED
-
IN_TRANSIT
@SerializedName("in_transit") public static final ShippingDeliveryStatusType IN_TRANSIT
-
PARTIAL_SHIPPED
@SerializedName("partial_shipped") public static final ShippingDeliveryStatusType PARTIAL_SHIPPED
-
SHIPPED
@SerializedName("shipped") public static final ShippingDeliveryStatusType SHIPPED
-
CANCELLED
@SerializedName("cancelled") public static final ShippingDeliveryStatusType CANCELLED
-
SHIPPING_EXCEPTION
@SerializedName("shipping_exception") public static final ShippingDeliveryStatusType SHIPPING_EXCEPTION
-
PICKED_UP_BY_CUSTOMER
@SerializedName("picked_up_by_customer") public static final ShippingDeliveryStatusType PICKED_UP_BY_CUSTOMER
-
DELIVERED
@SerializedName("delivered") public static final ShippingDeliveryStatusType DELIVERED
-
OTHER
@SerializedName("other") public static final ShippingDeliveryStatusType OTHER
-
-
Method Detail
-
values
public static ShippingDeliveryStatusType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ShippingDeliveryStatusType c : ShippingDeliveryStatusType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ShippingDeliveryStatusType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-