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